https://github.com/msolorio/flask_sqlalchemy_pytest_docker_template
https://github.com/msolorio/flask_sqlalchemy_pytest_docker_template
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/msolorio/flask_sqlalchemy_pytest_docker_template
- Owner: msolorio
- Created: 2024-02-05T16:04:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-27T23:34:06.000Z (over 1 year ago)
- Last Synced: 2025-02-10T22:52:22.901Z (5 months ago)
- Language: Python
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Running the App
See Makefile for running and testing app from Docker.# Debugger
To get debugger to work and run tests locally, outside of Docker
- create `.venv` - `$ python -m venv .venv`
- start venv - `$ source .venv/bin/activate`
- install packages - `$ pip install -r requirements.txt`
- install setup packages (installs `app` as a package accessible from `tests`) - `$ pip install -e src`