2020-12-11 20:29:33 +01:00
2020-12-11 20:29:33 +01:00
2020-12-03 18:48:24 +01:00
2020-12-03 18:48:24 +01:00
2020-12-05 18:49:09 +01:00
2020-11-24 16:51:18 +00:00
2020-12-12 12:29:14 +01:00
2020-12-05 20:01:06 +01:00
2020-12-12 12:29:14 +01:00

@lfk/backend

Backend Server

Dev Setup 🛠

Local w/ sqlite

  1. Create a .env file in the project root containing:
     APP_PORT=4010
     DB_TYPE=sqlite
     DB_HOST=bla
     DB_PORT=bla
     DB_USER=bla
     DB_PASSWORD=bla
     DB_NAME=./test.sqlite
    
  2. Install Dependencies
    yarn
    
  3. Start the server
    yarn dev
    

Generate Docs

yarn docs

Docker w/ postgres 🐳

docker-compose up --build

Visual Studio Code

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

Branches

  • main: Protected "release" branch
  • dev: Current dev branch for merging the different features - only push for merges or minor changes!
  • feature/xyz: Feature branches - feature/issueid-title
  • bugfix/xyz: Branches for bugfixes - bugfix/issueid-title (no id for readme changes needed)

File Structure

  • src/models/entities* - database models (typeorm entities)
  • src/models/actions* - actions models
  • src/models/responses* - response models
  • src/controllers/* - routing-controllers
  • src/loaders/* - loaders for the different init steps of the api server
  • src/middlewares/* - express middlewares (mainly auth r/n)
  • src/errors/* - our custom (http) errors
  • src/routes/* - express routes for everything we don't do via routing-controllers (depreciated)
Description
Backend Server
Readme CC-BY-NC-SA-4.0 5.9 MiB
2021-04-22 18:25:13 +00:00
Languages
JavaScript 56.2%
TypeScript 34.4%
CSS 9%
HTML 0.3%