- adjust
variables.dev.tsandvariables.prod.ts.
- add an
ormconfig.jsonfile (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