-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/dist | ||
/work | ||
node_modules | ||
!**/.gitkeep |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,26 @@ | ||
# dmbonn-sumory | ||
|
||
Deutsches Museum Bonn version of the Sumory exhibit | ||
|
||
## Building | ||
|
||
Requires Node.js (v18.19 or greater) and npm. | ||
|
||
Run the following from the root directory of the project: | ||
|
||
```bash | ||
npm install | ||
npm run build | ||
``` | ||
|
||
This will create a `dist` directory with the compiled exhibit. This directory can be served by any web server. | ||
|
||
## Credits | ||
|
||
This adaptation was developed by Eric Londaits for Imaginary gGmbH. | ||
|
||
## License | ||
|
||
Code licensed under the MIT License. See [LICENSE](LICENSE) for details. | ||
|
||
Copyright 2024 Imaginary gGmbH. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"languages": { | ||
"en": "English", | ||
"de": "Deutsch" | ||
}, | ||
"defaultLanguage": "de", | ||
"showLanguageSwitcher": true | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"name": "dm-bonn-sumory", | ||
"version": "1.0.0", | ||
"description": "Deutsches Museum Bonn version of the Sumory exhibit", | ||
"main": "index.js", | ||
"dependencies": { | ||
"degit": "^2.8.4" | ||
}, | ||
"scripts": { | ||
"build": "rm -rf ./dist && degit github:IMAGINARY/sumory#v1.3.1 --mode=git --force dist && cp -R ./extras/* ./dist && cd ./dist/src && npm install && npm run build && cd .. && cd .." | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/IMAGINARY/dm-bonn-sumory.git" | ||
}, | ||
"private": true | ||
} |