Competitive Splatoon Platform
Go to file
2021-10-31 10:44:38 +02:00
.vscode Map pools frontend initial 2021-10-31 01:22:28 +03:00
api Use shared packages for storing constants 2021-10-31 10:40:24 +02:00
frontend Fix issues tab problem 2021-10-31 10:44:38 +02:00
server Use shared packages for storing constants 2021-10-31 10:40:24 +02:00
shared Use shared packages for storing constants 2021-10-31 10:40:24 +02:00
.gitignore Prisma initial 2021-10-23 19:18:20 +03:00
package-lock.json Use shared packages for storing constants 2021-10-31 10:40:24 +02:00
package.json Use shared packages for storing constants 2021-10-31 10:40:24 +02:00
README.md Remove src/ folder from server 2021-10-25 01:43:28 +03:00

Folder structure

Frontend

Server

server/
├── index.ts/               entry point
├── routes/                 route mapping to controllers
├── middleware/             middlewares that are called before controllers
├── controllers/            route handling logic
├── services/               methods that talk to the database
├── core/                   business logic
└── prisma/
    ├── migrations/         migrations
    ├── schema.prisma       database models
    └── seed.ts             seeding script