Backend Server
Go to file
Nicolai Ort 60c1b5d748 Updated file structure in readme 2020-11-26 13:43:11 +00:00
.vscode vscode workspace settings.json 2020-11-25 19:41:26 +01:00
src Added openapi style response schemas 2020-11-26 14:15:01 +01:00
.dockerignore Added sqlite testing db to ignores 2020-11-25 18:32:01 +01:00
.env.example sample implementation of db connection 2020-11-24 19:28:57 +01:00
.gitignore Added sqlite testing db to ignores 2020-11-25 18:32:01 +01:00
Dockerfile Switched to installing all dependencies 2020-11-24 19:51:37 +01:00
LICENSE Initial commit 2020-11-24 16:51:18 +00:00
README.md Updated file structure in readme 2020-11-26 13:43:11 +00:00
docker-compose.yml Switched to installing all dependencies 2020-11-24 19:51:37 +01:00
ormconfig.ts Now importing entities from src/models 2020-11-24 20:59:38 +01:00
package.json Now creating (json)schemas from class validator annotated classes 2020-11-26 13:44:36 +01:00
tsconfig.json tsconfig not strict 2020-11-25 19:42:22 +01:00

README.md

@lfk/backend

Backend Server

Dev Setup 🛠

docker-compose up --build

Visual Studio Code

  • will be automatically recommended via ./vscode/extensions.json

File Structure

  • src/models/* - database models (typeorm entities)
  • src/controllers/* - routing-controllers
  • src/loaders/* - loaders for the different init steps of the api server
  • src/routes/* - express routes for everything we don't do via routing-controllers (shouldn't be much)