- adjust
variables.dev.ts
andvariables.prod.ts
.
- add an
ormconfig.json
file (make it match your settings):
[
{
"name": "default",
"autoSchemaSync": true,
"entities": [
"src/server/entities/*.ts"
],
"driver": {
"type": "postgres",
"host": "localhost",
"port": 5432,
"username": "postgres",
"password": "postgres",
"database": "aesir"
}
}
]
npm run start:dev
- edit
src/client
- edit
src/server