Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ferrriii/infolearn-frontend
infolearn frontend
https://github.com/ferrriii/infolearn-frontend
Last synced: 3 days ago
JSON representation
infolearn frontend
- Host: GitHub
- URL: https://github.com/ferrriii/infolearn-frontend
- Owner: ferrriii
- License: apache-2.0
- Created: 2019-11-12T08:30:21.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-23T06:19:26.000Z (over 1 year ago)
- Last Synced: 2023-03-03T13:56:57.237Z (over 1 year ago)
- Language: Vue
- Size: 2.92 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```