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

https://github.com/legzdev/learning-backend

💻 My progress learning back-end development.
https://github.com/legzdev/learning-backend

learning

Last synced: about 1 year ago
JSON representation

💻 My progress learning back-end development.

Awesome Lists containing this project

README

          

# learning-backend

### Creation of the virtual environment
> This step is not completely necessary, use it to you preference
```
python3 -m venv .venv
```

### Install dependencies
```
pip install -r requirements.txt
```

### Run the project
```
python3 -m flask run
```
or
```
./start.sh
```