Implemented more seeding feature/110-seeding #114

Merged
philipp merged 11 commits from feature/110-seeding into dev 2021-01-20 19:12:52 +00:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 8870ebdb5e - Show all commits

View File

@ -7,3 +7,4 @@ DB_PASSWORD=bla
DB_NAME=bla
NODE_ENV=production
POSTALCODE_COUNTRYCODE=DE
SEED_TEST_DATA=false

View File

@ -10,7 +10,7 @@ export const config = {
phone_validation_countrycode: getPhoneCodeLocale(),
postalcode_validation_countrycode: getPostalCodeLocale(),
version: process.env.VERSION || require('../package.json').version,
seedTestData: process.env.SEED_TEST || false
seedTestData: process.env.SEED_TEST_DATA || false
}
let errors = 0
if (typeof config.internal_port !== "number") {