-
Notifications
You must be signed in to change notification settings - Fork 1
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/initialize backend #1
Conversation
vade123
commented
Sep 2, 2024
•
edited
Loading
edited
- local dev env for azure functions with a dummy health check func
- local mongodb
- somewhat sensible eslint, prettier and ts configs based on previous projects
"allowSyntheticDefaultImports": true, | ||
"declaration": false, | ||
"esModuleInterop": true, | ||
"experimentalDecorators": true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
front end can definitely share some of these. I would probably add noUnusedLocals
and noUnusedParameters
@@ -0,0 +1,4 @@ | |||
module.exports = { | |||
semi: false, | |||
printWidth: 100, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could add "bracketSpacing": true
and "bracketSameLine": false
```bash | ||
$ npm install | ||
$ npm start | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here could be some optional instructions to activate the correct node version via local .nvmrc,
for example using nvm
.
Converted to draft while looking into this azd template |