File tree 3 files changed +36
-0
lines changed
3 files changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " Mozilla Bedrock Demos" ,
3
+ "description" : " Demo deployments for changes to Mozilla Bedrock." ,
4
+ "website" : " https://www.mozilla.org" ,
5
+ "repository" : " https://github.com/mozilla/bedrock" ,
6
+ "logo" : " https://www.mozilla.org/media/img/mozorg/mozilla-256.jpg" ,
7
+ "success_url" : " /healthz-cron/" ,
8
+ "stack" : " container" ,
9
+ "env" : {
10
+ "ALLOWED_HOSTS" : " *" ,
11
+ "CONTENT_CARDS_URL" : " https://www-dev.allizom.org/media/" ,
12
+ "CSP_DEFAULT_SRC" : " *.allizom.org" ,
13
+ "CSP_EXTRA_FRAME_SRC" : " *.mozaws.net" ,
14
+ "DB_DOWNLOAD_IGNORE_GIT" : " True" ,
15
+ "DEBUG" : " False" ,
16
+ "DEV" : " True" ,
17
+ "GTM_CONTAINER_ID" : " GTM-MW3R8V" ,
18
+ "LOG_LEVEL" : " INFO" ,
19
+ "PROD_DETAILS_STORAGE" : " product_details.storage.PDDatabaseStorage" ,
20
+ "RUN_SUPERVISOR" : " True" ,
21
+ "SECRET_KEY" : {
22
+ "description" : " A secret key for verifying the integrity of signed cookies, though we don't use them." ,
23
+ "generator" : " secret"
24
+ }
25
+ }
26
+ }
Original file line number Diff line number Diff line change @@ -6,6 +6,13 @@ if [ ! -e ./manage.py ]; then
6
6
cd $script_parent_dir
7
7
fi
8
8
9
+ # for heroku demos
10
+ # heroku doesn't pull git submodules
11
+ if [[ ! -d ./vendor-local/src/legal-docs/firefox_privacy_notice ]]; then
12
+ rm -rf ./vendor-local/src/legal-docs
13
+ git clone --depth 1 https://github.com/mozilla/legal-docs.git vendor-local/src/legal-docs
14
+ fi
15
+
9
16
./bin/run-db-download.py --force
10
17
./manage.py migrate --noinput
11
18
./bin/run-db-update.sh --all || true
Original file line number Diff line number Diff line change
1
+ build :
2
+ docker :
3
+ web : Dockerfile
You can’t perform that action at this time.
0 commit comments