-
-
Notifications
You must be signed in to change notification settings - Fork 214
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
feat: add npm deploy and move backend source to /api
folder
#3422
Conversation
Pull Request Test Coverage Report for Build 6865821291
💛 - Coveralls |
TODOs:
|
/api
folder
export const port: string | number = process.env.PORT || 8091 | ||
export const host: string = process.env.HOST // by default undefined, so it will listen on all interfaces both ipv4 and ipv6 | ||
export const sessionSecret: string = | ||
process.env.SESSION_SECRET || 'DEFAULT_SESSION_SECRET_CHANGE_ME' |
Check failure
Code scanning / CodeQL
Hard-coded credentials
@frenck @jmgiaever FYI after this will be released: All backend files have been moved to In future I would like to switch to a monorepo using lerna but that requires much more work and I'm not sure I want it yet... |
Fixes #3418