Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/progchris00/lspu-e-libramo


https://github.com/progchris00/lspu-e-libramo

Last synced: 17 days ago
JSON representation

Awesome Lists containing this project

README

        

# Getting Started

1. Clone the repo
2. Create a python virtual environment

```bash
$ py -3 -m venv .venv
```

3. Activate the virtual envrionment

```bash
$ .venv\Scripts\activate
```

4. Install dependencies

```bash
$ pip install -r requirements.txt
```

5. Initialize sqlite database

```bash
$ flask --app app init-db
```

6. Populate database using a python script

```bash
$ python .\populate_db.py
```

7. Run local server

```bash
$ flask run --debug
```