-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #586 from Amsterdam-Music-Lab/feature/update-readme
Feature/update readme
- Loading branch information
Showing
2 changed files
with
36 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,26 @@ | ||
SQL_DATABASE= | ||
SQL_USER= | ||
SQL_PASSWORD= | ||
SQL_HOST= | ||
AML_DEBUG=true | ||
DJANGO_SETTINGS_MODULE=aml.development_settings | ||
SQL_DATABASE=muscle # you can change this to an arbitrary value before first startup | ||
SQL_USER=muscle # you can change this to an arbitrary value before first startup | ||
SQL_PASSWORD=musclepassword # change this to a safe password when running in production | ||
SQL_HOST=db # name of database container, don't change | ||
SQL_PORT=5432 # port where to reach the database, don't change | ||
|
||
AML_SECRET_KEY=supersecret # change this to a safe password when running in production | ||
AML_DEBUG=true # change this to false when running in production | ||
DJANGO_SETTINGS_MODULE=aml.development_settings # change this to aml.production_settings when running in production | ||
DJANGO_SUPERUSER_USERNAME=admin # do not use in production! | ||
DJANGO_SUPERUSER_PASSWORD=admin # do not use in production! | ||
DJANGO_SUPERUSER_EMAIL=mail@example.com # do not use in production! | ||
AML_LOCATION_PROVIDER=http://ip2country:8854 | ||
REACT_APP_API_ROOT=http://localhost:8000 | ||
REACT_APP_EXPERIMENT_SLUG=gold-msi | ||
REACT_APP_AML_HOME=https://www.amsterdammusiclab.nl | ||
REACT_APP_LOGO_URL= | ||
REACT_APP_HTML_PAGE_TITLE=Amsterdam Music Lab Experiment | ||
REACT_APP_HTML_FAVICON=/favicon.ico | ||
REACT_APP_HTML_OG_DESCRIPTION=Listening experiments from the Amsterdam Music Lab. Test your musical knowledge and skills in engaging citizen-science experiments. | ||
REACT_APP_HTML_OG_IMAGE= | ||
REACT_APP_HTML_OG_TITLE=Amsterdam Music Lab Experiment | ||
REACT_APP_HTML_OG_URL= | ||
REACT_APP_HTML_BODY_CLASS= | ||
AML_LOCATION_PROVIDER=http://ip2country:5000/{} # address of the ip2country container, don't change | ||
ALLOWED_HOSTS=localhost # needs to be changed when running in production | ||
|
||
REACT_APP_API_ROOT=http://localhost:8000 # address of the server, don't change | ||
REACT_APP_EXPERIMENT_SLUG=gmsi # experiment slug that the frontend redirects to | ||
REACT_APP_AML_HOME=https://www.amsterdammusiclab.nl # website you will be redirected to if you do not agree with an informed consent form | ||
REACT_APP_LOGO_URL= # optional: link to logo | ||
REACT_APP_HTML_PAGE_TITLE=Amsterdam Music Lab Experiment # optional: information for web crawlers | ||
REACT_APP_HTML_FAVICON=/favicon.ico # optional: which image to use as favicon | ||
REACT_APP_HTML_OG_DESCRIPTION=Listening experiments from the Amsterdam Music Lab. Test your musical knowledge and skills in engaging citizen-science experiments. # optional: information for web crawlers | ||
REACT_APP_HTML_OG_IMAGE= # optional: information for web crawlers | ||
REACT_APP_HTML_OG_TITLE=Amsterdam Music Lab Experiment # optional: information for web crawlers | ||
REACT_APP_HTML_OG_URL= # optional: information for web crawlers | ||
REACT_APP_HTML_BODY_CLASS= # optional: assign a css class to the <body> tag in index.html, for custom styling |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters