ac08a53014
* chore: update to circleci * chore: fixup * chore: fixup * chore: remove travis.yml * chore: wait for redis * chore: fix postgres * chore: try to fix db * chore: debug * chore: debug * chore: try another node * chore: try 2.5 * chore: fix node * chore: fix node * chore: fix node * chore: fix node * chore: fix node * chore: fix node * chore: fix node * chore: fix node * chore: fix node * chore: fix node * chore: cleanup * chore: cleanup * chore: remove travis stuff * chore: fix emoji * chore: fix cache * chore: update readme
17 lines
453 B
JavaScript
17 lines
453 B
JavaScript
export const DB_NAME = 'pinafore_development'
|
|
export const DB_USER = 'pinafore'
|
|
export const DB_PASS = 'pinafore'
|
|
export const DB_PORT = process.env.PGPORT || 5432
|
|
export const DB_HOST = '127.0.0.1'
|
|
|
|
export const envFile = `
|
|
PAPERCLIP_SECRET=foo
|
|
SECRET_KEY_BASE=bar
|
|
OTP_SECRET=foobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobar
|
|
DB_HOST=${DB_HOST}
|
|
DB_PORT=${DB_PORT}
|
|
DB_USER=${DB_USER}
|
|
DB_NAME=${DB_NAME}
|
|
DB_PASS=${DB_PASS}
|
|
`
|