https://github.com/alexsergey/koa-boilerplate
https://github.com/alexsergey/koa-boilerplate
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/alexsergey/koa-boilerplate
- Owner: AlexSergey
- Created: 2021-10-08T06:50:25.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2026-01-23T14:00:23.000Z (6 months ago)
- Last Synced: 2026-01-24T05:51:43.811Z (6 months ago)
- Language: TypeScript
- Size: 3.38 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Roadmap: roadmap.md
Awesome Lists containing this project
README
### Debug
Webstorm:
- Add configuration: Attach to Node.js/Chrome
- Set breakpoints in the webstorm
- Run the application
- Press debug button in the top bar
- Reload the application
### DB Setup
```shell
docker build -t sqlite_db .
```
```shell
docker run -it -v sqlite_data:/data --name sqlite_container sqlite_db
```
Run
```shell
npm run db:migrate:development
```
```shell
npm run db:seed:development
```