-
Notifications
You must be signed in to change notification settings - Fork 28
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 #2812 from zimmerman-team/develop
Develop to Main release for IATI.cloud publishing direct-indexing
- Loading branch information
Showing
1,272 changed files
with
22,159 additions
and
389,917 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# General project | ||
SECRET_KEY=iati_cloud | ||
DEBUG=True | ||
FRESH=True | ||
THROTTLE_DATASET=False | ||
DJANGO_STATIC_ROOT=/static/ | ||
DJANGO_STATIC_URL=/static/ | ||
|
||
# Postgres | ||
POSTGRES_HOST=database | ||
POSTGRES_PORT=5432 | ||
POSTGRES_DB=iati_cloud | ||
POSTGRES_USER=iati_cloud | ||
POSTGRES_PASSWORD=oipa | ||
|
||
# Celery | ||
CELERY_BROKER_URL=amqp://rabbitmq | ||
|
||
# FCDO Instance | ||
FCDO_INSTANCE=False | ||
|
||
# SOLR USERNAME AND PASSWORD | ||
SOLR_ADMIN_USERNAME=admin_example | ||
SOLR_ADMIN_PASSWORD=exampl3_123! | ||
# SOLR BASE URL, Use the same username and password as above | ||
SOLR_BASE_URL=http://admin_example:exampl3_123!@solr:8983/solr | ||
# BASE ENCODED USER AND PASSWORD (USE https://www.base64encode.org/ TO ENCODE) | ||
SOLR_AUTH_ENCODED=YWRtaW5fZXhhbXBsZTpleGFtcGwzXzEyMyE= | ||
# SOLR Memory (in GB), 20 and 40 are recommended for production, local you can use 1 and 2. | ||
MEM_SOLR_MIN=20 | ||
MEM_SOLR_MAX=40 | ||
|
||
# Flower password | ||
CELERYFLOWER_PASSWORD=zz | ||
CELERYFLOWER_USER=zz | ||
|
||
# DJANGO DEFAULT SUPERUSER WHEN FIRST RUN | ||
DJANGO_SUPERUSER_USERNAME=admin_example | ||
DJANGO_SUPERUSER_PASSWORD=exampl3_123! | ||
[email protected] | ||
|
||
# MONGODB DEFAULT SUPERUSER, PASSWORD AND DATABASE WHEN FIRST RUN | ||
MONGO_INITDB_ROOT_USERNAME=admin_example | ||
MONGO_INITDB_ROOT_PASSWORD=exampl3_123! | ||
MONGO_INITDB_DATABASE=activities # needs to stay the same | ||
# MongoDB use the same username and password as above | ||
MONGO_CONNECTION_STRING=mongodb://admin_example:exampl3_123!@mongo:27017 | ||
|
||
# NGINX HOST, localhost for local development, iati.cloud for production | ||
IC_DOMAIN=localhost |
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# General project | ||
SECRET_KEY=iati_cloud | ||
DEBUG=True | ||
FRESH=True | ||
THROTTLE_DATASET=False | ||
DJANGO_STATIC_ROOT=/static/ | ||
DJANGO_STATIC_URL=/static/ | ||
|
||
# Postgres | ||
POSTGRES_HOST=localhost | ||
POSTGRES_PORT=5432 | ||
POSTGRES_DB=iati_cloud | ||
POSTGRES_USER=iati_cloud | ||
POSTGRES_PASSWORD=oipa | ||
|
||
# Celery | ||
CELERY_BROKER_URL=amqp://localhost | ||
|
||
# FCDO Instance | ||
FCDO_INSTANCE=False | ||
|
||
# SOLR USERNAME AND PASSWORD | ||
SOLR_ADMIN_USERNAME=admin_example | ||
SOLR_ADMIN_PASSWORD=exampl3_123! | ||
# SOLR BASE URL, Use the same username and password as above | ||
SOLR_BASE_URL=http://localhost:8983/solr | ||
# BASE ENCODED USER AND PASSWORD (USE https://www.base64encode.org/ TO ENCODE) | ||
SOLR_AUTH_ENCODED=YWRtaW5fZXhhbXBsZTpleGFtcGwzXzEyMyE= | ||
|
||
# Flower password | ||
CELERYFLOWER_PASSWORD=zz | ||
CELERYFLOWER_USER=zz | ||
|
||
# DJANGO DEFAULT SUPERUSER WHEN FIRST RUN | ||
DJANGO_SUPERUSER_USERNAME=admin_example | ||
DJANGO_SUPERUSER_PASSWORD=exampl3_123! | ||
[email protected] | ||
|
||
# MONGODB DEFAULT SUPERUSER, PASSWORD AND DATABASE WHEN FIRST RUN | ||
MONGO_INITDB_ROOT_USERNAME=admin_example | ||
MONGO_INITDB_ROOT_PASSWORD=exampl3_123! | ||
MONGO_INITDB_DATABASE=activities # needs to stay the same | ||
# MongoDB use the same username and password as above | ||
MONGO_CONNECTION_STRING=mongodb://admin_example:exampl3_123!@localhost:27017 | ||
|
||
# NGINX HOST, localhost for local development, iati.cloud for production | ||
IC_DOMAIN=localhost |
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
Oops, something went wrong.