https://github.com/mysiar/python-skeleton
https://github.com/mysiar/python-skeleton
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mysiar/python-skeleton
- Owner: mysiar
- Created: 2020-12-18T12:22:43.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-02-03T17:31:55.000Z (over 2 years ago)
- Last Synced: 2025-03-02T22:18:03.660Z (over 1 year ago)
- Language: Jupyter Notebook
- Size: 36.1 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Basic Python skeleton project
## Local development with `venv`
* run `make venv` to create `venv`
* run `. ./venv/bin/activate` to activate `venv`
* run `make pip` to install dependencies
* run `make lint` to lint code
* run `make test` to run tests
## Development in Docker
* run `make up`
* open in browser http://127.0.0.1:81 for Jupyter Notebook
* run `make d-pip` to install dependencies in container
* run `make d-lint` to lint code in container
* run `make d-test` to run tests in container