Skip to content

Checkout

Benedikt Müll edited this page May 18, 2023 · 5 revisions

Steps

  1. Checkout project
  2. Run npm install
  3. Create under api > src > config a secret.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"
    }
}

Start

From to the projects root directory run:

Frontend

ng serve (Angular Devserver with Webpack)

Backend

npm run api (Node.js with ts-node for TypeScript)

Clone this wiki locally