Removes some unnecessary DevOps settings

This commit is contained in:
Aaron Louie 2020-09-23 20:25:00 -04:00
parent c5949028ec
commit c93ddccafe
2 changed files with 1 additions and 2 deletions

View File

@ -33,7 +33,6 @@ env:
- API_URL=http://localhost:5000/v1.0 - API_URL=http://localhost:5000/v1.0
- BASE_HREF=/ - BASE_HREF=/
- DEPLOY_URL=/ - DEPLOY_URL=/
- HOME_ROUTE=home
- PORT0=4200 - PORT0=4200
- PRODUCTION=false - PRODUCTION=false
script: script:

View File

@ -26,6 +26,6 @@ RUN echo "pushstate: enabled" > /etc/nginx/html/Staticfile
# then starts/reloads nginx. # then starts/reloads nginx.
ENTRYPOINT ["./entrypoint.sh", \ ENTRYPOINT ["./entrypoint.sh", \
"/etc/nginx/html/index.html,/etc/nginx/conf.d/default.conf", \ "/etc/nginx/html/index.html,/etc/nginx/conf.d/default.conf", \
"PRODUCTION,API_URL,IRB_URL,HOME_ROUTE,BASE_HREF,DEPLOY_URL,PORT0,GOOGLE_ANALYTICS_KEY,SENTRY_KEY,TITLE", \ "PRODUCTION,API_URL,BASE_HREF,DEPLOY_URL,PORT0,GOOGLE_ANALYTICS_KEY,TITLE", \
"/etc/nginx/html", \ "/etc/nginx/html", \
"true"] "true"]