https://github.com/lst97/simple-receipt-manager-backend
https://github.com/lst97/simple-receipt-manager-backend
flask python3
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/lst97/simple-receipt-manager-backend
- Owner: lst97
- License: other
- Created: 2023-01-10T03:17:38.000Z (over 3 years ago)
- Default Branch: development
- Last Pushed: 2023-05-29T07:18:59.000Z (about 3 years ago)
- Last Synced: 2023-05-29T08:22:59.793Z (about 3 years ago)
- Topics: flask, python3
- Language: Python
- Homepage:
- Size: 127 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Installing packages using pip and virtual environments
## Install virtualenv
```code
python3 -m pip install --user virtualenv
```
## Creating a virtual environment
```code
python3 -m venv ./.venv
```
## Activating a virtual environment
```code
source ./.venv/bin/activate
```
## Using requirements files
```code
python3 -m pip install -r requirements.txt
```
## Run
```code
python3 ./src/app/app.py
```