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.
- Host: GitHub
- URL: https://github.com/legzdev/learning-backend
- Owner: legzdev
- License: mit
- Archived: true
- Created: 2022-08-02T23:10:55.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-09T23:24:38.000Z (almost 4 years ago)
- Last Synced: 2025-02-25T17:44:29.721Z (over 1 year ago)
- Topics: learning
- Language: Python
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```