mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 12:57:28 +00:00
35 lines
388 B
Markdown
35 lines
388 B
Markdown
# RiotAPI
|
|
|
|
## Global dependencies
|
|
```
|
|
Vue CLI
|
|
nodemon
|
|
```
|
|
|
|
## Project setup
|
|
```
|
|
cd client
|
|
npm install
|
|
|
|
cd server
|
|
npm install
|
|
create .env file with API_KEY= your RiotGames API Key
|
|
```
|
|
|
|
### 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
|
|
```
|