Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/lmichelin/centrale-ei-web


https://github.com/lmichelin/centrale-ei-web

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# centrale-ei-web

## Backend

### Project setup

```
cd backend
npm install
cp .env.example .env # edit the MONGO_DB_URL according to your database
```

### Start and auto-reload for development

```
npm run dev
```

### Start for production

```
npm run start
```

### Lint and fix files

```
npm run lint
```

## Frontend

### Project setup

```
cd frontend
npm install
```

### Compile and hot-reload for development

```
npm run dev
```

### Compile and minifiy for production

```
npm run build
```

### Lint and fix files

```
npm run lint
```

### Customize configuration

See [Configuration Reference](https://cli.vuejs.org/config/).