ylink
9 hours ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
6 additions and
0 deletions
-
CHANGELOG.md
-
DEVELOPMENT.md
-
package.json
|
|
@ -395,6 +395,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
- Upgraded `dotenv` from version `17.2.3` to `17.4.2` |
|
|
- Upgraded `dotenv` from version `17.2.3` to `17.4.2` |
|
|
- Upgraded `dotenv-expand` from version `12.0.3` to `13.0.0` |
|
|
- Upgraded `dotenv-expand` from version `12.0.3` to `13.0.0` |
|
|
- Upgraded `fuse.js` from version `7.3.0` to `7.5.0` |
|
|
- Upgraded `fuse.js` from version `7.3.0` to `7.5.0` |
|
|
|
|
|
- Added support for starting the server and the client in parallel during development |
|
|
|
|
|
|
|
|
### Fixed |
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
@ -18,6 +18,10 @@ |
|
|
1. Open https://localhost:4200/en in your browser |
|
|
1. Open https://localhost:4200/en in your browser |
|
|
1. Create a new user via _Get Started_ (this first user will get the role `ADMIN`) |
|
|
1. Create a new user via _Get Started_ (this first user will get the role `ADMIN`) |
|
|
|
|
|
|
|
|
|
|
|
### Start Server and Client |
|
|
|
|
|
|
|
|
|
|
|
Run `npm run dev` to start the server and the client in the same terminal. |
|
|
|
|
|
|
|
|
### Start Server |
|
|
### Start Server |
|
|
|
|
|
|
|
|
#### Debug |
|
|
#### Debug |
|
|
|
|
|
@ -25,6 +25,7 @@ |
|
|
"database:setup": "npm run database:push && npm run database:seed", |
|
|
"database:setup": "npm run database:push && npm run database:seed", |
|
|
"database:validate-schema": "prisma validate", |
|
|
"database:validate-schema": "prisma validate", |
|
|
"dep-graph": "nx dep-graph", |
|
|
"dep-graph": "nx dep-graph", |
|
|
|
|
|
"dev": "nx run-many --target=copy-assets --projects=api,client && nx run-many --target=serve --projects=api,client --configuration=development-en", |
|
|
"extract-locales": "nx run client:extract-i18n --output-path ./apps/client/src/locales", |
|
|
"extract-locales": "nx run client:extract-i18n --output-path ./apps/client/src/locales", |
|
|
"format": "nx format:write", |
|
|
"format": "nx format:write", |
|
|
"format:check": "nx format:check", |
|
|
"format:check": "nx format:check", |
|
|
|