monorepo builds

This commit is contained in:
Blair Vanderlugt 2021-08-13 14:42:59 -07:00
parent e79afe3e88
commit 85bd92a2fc
3 changed files with 29 additions and 14 deletions

View File

@ -14,7 +14,7 @@ RUN npm install
COPY . .
# running build script
RUN npm run build:dev
RUN npm run build:${FRONTEND_ENV}
### STAGE 2: Setup ###
# defining nginx image version

View File

@ -24,11 +24,7 @@
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"aot": true,
"assets": [
"src/favicon.ico",
"src/assets",
"src/manifest.webmanifest"
],
"assets": ["src/favicon.ico", "src/assets", "src/manifest.webmanifest"],
"styles": [
"./node_modules/@angular/material/prebuilt-themes/indigo-pink.css",
"src/styles.scss",
@ -78,6 +74,14 @@
"with": "src/environments/environment.dev.ts"
}
]
},
"staging": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.staging.ts"
}
]
}
}
},
@ -109,11 +113,7 @@
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"codeCoverage": true,
"assets": [
"src/favicon.ico",
"src/assets",
"src/manifest.webmanifest"
],
"assets": ["src/favicon.ico", "src/assets", "src/manifest.webmanifest"],
"styles": [
"./node_modules/@angular/material/prebuilt-themes/indigo-pink.css",
"src/styles.scss"
@ -130,9 +130,7 @@
"e2e/tsconfig.json",
"tsconfig.worker.json"
],
"exclude": [
"**/node_modules/**"
]
"exclude": ["**/node_modules/**"]
}
},
"e2e": {

View File

@ -0,0 +1,17 @@
import { NgxLoggerLevel } from 'ngx-logger';
export const environment = {
production: false,
bloxbergChainId: 8996,
logLevel: NgxLoggerLevel.DEBUG,
serverLogLevel: NgxLoggerLevel.OFF,
loggingUrl: '',
cicMetaUrl: 'https://meta.staging.grassrootseconomics.net',
publicKeysUrl: 'https://dev.grassrootseconomics.net/.well-known/publickeys/',
cicCacheUrl: 'https://cache.staging.grassrootseconomics.net',
web3Provider: 'wss://bloxberg.staging.grassrootseconomics.net',
cicUssdUrl: 'https://user.staging.grassrootseconomics.net',
registryAddress: '0xea6225212005e86a4490018ded4bf37f3e772161',
trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C',
dashboardUrl: 'https://dashboard.sarafu.network/',
};