Newer
Older
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
## Project setup
```shell
npm install
```
### Set environment variables
```ìni
NODE_ENV=development
VUE_APP_LOCALE=fr-FR
DOMAIN=https://dev.pigma.neogeo.fr/fr
VUE_APP_DOMAIN=https://dev.pigma.neogeo.fr/
BASE_PATH=/
VUE_APP_NEXT_DEFAULT=/
VUE_APP_BASE_PATH=${BASE_PATH}
# API
VUE_APP_LOGIN_API_PATH=/fr/login
VUE_APP_ORGANISATION_API_PATH=/fr/organisation/
VUE_APP_USERGROUP_API_PATH=/fr/usergroup/
# AUTH
VUE_APP_LOGIN_API_USERNAME=admin
VUE_APP_LOGIN_API_PASSWORD=Neogeo2020
```
### Compiles and hot-reloads for development
```shell
npm run serve
```
### Compiles and minifies for production
```shell
npm run build
```
### Run your unit tests
```shell
npm run test:unit
```
### Run your end-to-end tests
```shell
npm run test:e2e
```
### Lints and fixes files
```shell
npm run lint
```
### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).