https://github.com/killmenot/kicker-league
Web dashboard for Taganrog kicker league
https://github.com/killmenot/kicker-league
Last synced: 5 months ago
JSON representation
Web dashboard for Taganrog kicker league
- Host: GitHub
- URL: https://github.com/killmenot/kicker-league
- Owner: killmenot
- Created: 2018-03-05T08:30:54.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-03-06T19:19:07.000Z (over 3 years ago)
- Last Synced: 2025-04-07T06:45:38.499Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 2.56 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kicker League
## Pre-Install
```
cp .env.example .env # then set env variables
```
## Development
```
npm install
npm run db:dev:rebuild
npm run start:dev
```
## Production
### Without Migrations
```
npm install
npm start
```
### With Migrations
```
npm install
npm run db:migrate
npm start
```
## Run
Just open [http://localhost:4000](http://localhost:4000).
## Tests
```
npm test
```