Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/valve/neolang
Language learning materials management system (API only)
https://github.com/valve/neolang
Last synced: 11 days ago
JSON representation
Language learning materials management system (API only)
- Host: GitHub
- URL: https://github.com/valve/neolang
- Owner: Valve
- Created: 2018-10-06T20:03:32.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T02:57:10.000Z (almost 2 years ago)
- Last Synced: 2024-10-11T20:16:08.642Z (27 days ago)
- Language: Python
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# neolang-api
## Development setup
### Copy env vars and update them as necessary
```
cp .env.example .env
```### Create virtual env
```
virtualenv .venv
source .venv/bin/activate
(.venv) pip install -r requirements.txt
(.venv) pip install -U pip
```### Create and migrate database
```
flask db upgrade
```### Seed DB
```
# seed entry types separately
flask seed-entry-types
# seed the rest of the data
flask seed
```Now the app is ready to run.
```
flask run
# go to http://localhost:5000/v1/parts
```