Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ferrriii/infolearn-frontend

infolearn frontend
https://github.com/ferrriii/infolearn-frontend

Last synced: 3 days ago
JSON representation

infolearn frontend

Awesome Lists containing this project

README

        

# InfoLearn
InfoLearn is a social network for learning. You can publish short texts and InfoLearn repeats these texts for you to memorize them.

This repository is the frontend code in VueJs. it proivdes user interface for InfoLearn.

![](resources/infolearn-demo.gif)

## Setup
Create an `.env.developement` and `.env.production` files in the root with below contents
```
VUE_APP_API_URL=http://localhost:3000/ #api end point
```
then
```
npm install
```
For APIs see [InfoLearn backend repositry](https://github.com/ferrriii/infolearn-backend).

### Compiles and hot-reloads for development
```
npm run serve
```

### Compiles and minifies for production
```
npm run build
```

### Test
```
npm run test
```

### Lints and fixes files
```
npm run lint
```

### e2e test
```
npm run test:e2e
```

### Unit test
```
npm run test:unit
```