-
Notifications
You must be signed in to change notification settings - Fork 0
Checkout
Benedikt Müll edited this page May 18, 2023
·
5 revisions
- Checkout project
- Run
npm install
- Create under
api > src > config
asecret.json
. The contents should look like:
{
"database": {
"host": "example.host",
"user": "example_user",
"password": "example_password",
"db": "example_db"
},
"auth": {
"secret": "example_secret"
},
"mail": {
"host": "smpt.example.host",
"port": {
"send": "123",
"receive": "123"
},
"address": "[email protected]",
"password": "example_password"
}
}
From to the projects root directory run:
ng serve
(Angular Devserver with Webpack)
npm run api
(Node.js with ts-node for TypeScript)