LeagueStats/README.md

36 lines
388 B
Markdown
Raw Permalink Normal View History

2019-04-07 17:54:02 +00:00
# RiotAPI
## Global dependencies
```
Vue CLI
nodemon
```
## 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-04-07 18:04:18 +00:00
create .env file with API_KEY= your RiotGames API Key
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
npm run dev
```