Skip to content
This repository has been archived by the owner on Apr 8, 2018. It is now read-only.

Latest commit

 

History

History
45 lines (32 loc) · 596 Bytes

README.md

File metadata and controls

45 lines (32 loc) · 596 Bytes

Aesir Manager

Setup

Client

  • adjust variables.dev.ts and variables.prod.ts.

Server

  • 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"
    }
  }
]

Develop

Running

  • npm run start:dev

Client

  • edit src/client

Server

  • edit src/server