Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding back USE_MOCKS='true' for docker target #391

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions shell/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@o-platform/shell",
"version": "1.0.3",
"author": "Daniel Janz, Thorsten Schau (Gnosis Service GmbH); Samuel Andert (Basic Income Lab GmbH)",
"author": "Daniel Janz, Thorsten Schau (Gnosis Service GmbH); Samuel Andert (Basic Income Lab GmbH)",
"license": "AGPL-3.0-or-later",
"description": "CirclesUBI Indonesia web app",
"scripts": {
"clean:all": "npx shx rm -rf public/bundle.* && npx shx rm -rf node_modules",
"clean": "npx shx rm -rf public/bundle.*",
"local": "ENVIRONMENT='local' USE_MOCKS='true' webpack serve --hot --config webpack.config.js --mode=development",
"docker": "DEPLOY_ENVIRONMENT='docker' DEFAULT_APP_LANGUAGE=id I18N_FILE_URL_TEMPLATE='https://raw.githubusercontent.com/CirclesUBI/o-platform-i18n/dev/{locale}.json' ENVIRONMENT='docker' HERE_API_KEY='TAyr4mDOyPVD3DUwlUhLgV-hQxIsXGl3wnlyTkTPWsA' webpack serve --hot --host 0.0.0.0 --port 8080 --config webpack.config.js --mode=development",
"docker": "DEPLOY_ENVIRONMENT='docker' USE_MOCKS='true' DEFAULT_APP_LANGUAGE=id I18N_FILE_URL_TEMPLATE='https://raw.githubusercontent.com/CirclesUBI/o-platform-i18n/dev/{locale}.json' ENVIRONMENT='docker' HERE_API_KEY='TAyr4mDOyPVD3DUwlUhLgV-hQxIsXGl3wnlyTkTPWsA' webpack serve --hot --host 0.0.0.0 --port 8080 --config webpack.config.js --mode=development",
"override": "DEFAULT_APP_LANGUAGE=id I18N_FILE_URL_TEMPLATE='https://raw.githubusercontent.com/CirclesUBI/o-platform-i18n/dev/{locale}.json' ENVIRONMENT='override' I18N_FILE_URL_TEMPLATE='https://raw.githubusercontent.com/CirclesUBI/o-platform-i18n/dev/{locale}.json' webpack serve --hot --host localhost --https --port 8080 --config webpack.config.js --mode=development",
"build": "cross-env NODE_ENV=production webpack",
"validate": "svelte-check"
Expand Down
Loading