Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/progchris00/lspu-e-libramo
https://github.com/progchris00/lspu-e-libramo
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/progchris00/lspu-e-libramo
- Owner: progchris00
- Created: 2024-10-12T09:27:52.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-01-10T07:40:03.000Z (27 days ago)
- Last Synced: 2025-01-10T08:36:53.506Z (27 days ago)
- Language: HTML
- Size: 17.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```