An open API service indexing awesome lists of open source software.

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

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
```