mirror of
https://github.com/snowball-tools/snowballtools-base.git
synced 2024-11-18 04:56:18 +00:00
Build webapp script fix (#111)
* build-webapp-script-fix * build-webapp-script-fix
This commit is contained in:
parent
48fd953c60
commit
dcf271a01b
1
.gitignore
vendored
1
.gitignore
vendored
@ -2,5 +2,6 @@ node_modules/
|
|||||||
yarn-error.log
|
yarn-error.log
|
||||||
.yarnrc.yml
|
.yarnrc.yml
|
||||||
.yarn/
|
.yarn/
|
||||||
|
.yarnrc
|
||||||
|
|
||||||
packages/backend/environments/local.toml
|
packages/backend/environments/local.toml
|
@ -9,6 +9,14 @@ if [[ -d "$DEST_DIR" ]]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [[ -f "$PKG_DIR/.env" ]]; then
|
||||||
|
echo "Using existing .env file"
|
||||||
|
else
|
||||||
|
mv "$PKG_DIR/.env.example" "$PKG_DIR/.env"
|
||||||
|
echo "Created .env file. Please populate with the correct values."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
cat > $PKG_DIR/.env <<EOF
|
cat > $PKG_DIR/.env <<EOF
|
||||||
REACT_APP_SERVER_URL = 'LACONIC_HOSTED_CONFIG_app_server_url'
|
REACT_APP_SERVER_URL = 'LACONIC_HOSTED_CONFIG_app_server_url'
|
||||||
REACT_APP_GITHUB_CLIENT_ID = 'LACONIC_HOSTED_CONFIG_app_github_clientid'
|
REACT_APP_GITHUB_CLIENT_ID = 'LACONIC_HOSTED_CONFIG_app_github_clientid'
|
||||||
|
Loading…
Reference in New Issue
Block a user