LeagueStats/README.md

38 lines
398 B
Markdown
Raw Normal View History

2019-09-11 08:09:58 +00:00
# LeagueStats
2019-04-07 17:54:02 +00:00
## Global dependencies
```
Vue CLI
2019-09-11 08:09:58 +00:00
Adonis CLI
MongoDB
2019-04-07 17:54:02 +00:00
```
## Project setup
```
cd client
npm install
2019-04-07 18:04:18 +00:00
2019-04-07 17:54:02 +00:00
cd server
npm install
2019-09-11 08:09:58 +00:00
cp .env.example .env
adonis migration:run
2019-04-07 17:54:02 +00:00
```
### Compiles and hot-reloads for development
```
cd client
npm run serve
```
### Compiles and minifies for production
```
cd client
npm run build
```
### Run NodeJS server
```
cd server
2019-09-11 08:09:58 +00:00
adonis serve --dev
2019-04-07 17:54:02 +00:00
```