https://github.com/bfssi-bioinformatics-lab/pptm
Project Picture Taking Pilot
https://github.com/bfssi-bioinformatics-lab/pptm
Last synced: over 1 year ago
JSON representation
Project Picture Taking Pilot
- Host: GitHub
- URL: https://github.com/bfssi-bioinformatics-lab/pptm
- Owner: BFSSI-Bioinformatics-Lab
- License: mit
- Created: 2024-10-24T16:36:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-27T17:40:43.000Z (over 1 year ago)
- Last Synced: 2025-02-27T23:27:56.400Z (over 1 year ago)
- Language: Python
- Size: 156 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Project Picture Taking Pilot
## TODO
- before you begin screen with checkboxes to deal with variety pack, multiple NFT, multiple barcode, etc options
- need to type in product name (with examples of good and bad)
- front page
- review page for backend nightly processing
Behold My Awesome Project!
[](https://github.com/cookiecutter/cookiecutter-django/)
[](https://github.com/astral-sh/ruff)
License: MIT
## Settings
Moved to [settings](https://cookiecutter-django.readthedocs.io/en/latest/1-getting-started/settings.html).
## Basic Commands
### Setting Up Your Users
- To create a **normal user account**, just go to Sign Up and fill out the form. Once you submit it, you'll see a "Verify Your E-mail Address" page. Go to your console to see a simulated email verification message. Copy the link into your browser. Now the user's email should be verified and ready to go.
- To create a **superuser account**, use this command:
$ python manage.py createsuperuser
For convenience, you can keep your normal user logged in on Chrome and your superuser logged in on Firefox (or similar), so that you can see how the site behaves for both kinds of users.
### Type checks
Running type checks with mypy:
$ mypy pptp
### Test coverage
To run the tests, check your test coverage, and generate an HTML coverage report:
$ coverage run -m pytest
$ coverage html
$ open htmlcov/index.html
#### Running tests with pytest
$ pytest
### Live reloading and Sass CSS compilation
Moved to [Live reloading and SASS compilation](https://cookiecutter-django.readthedocs.io/en/latest/2-local-development/developing-locally.html#using-webpack-or-gulp).
## Deployment
The following details how to deploy this application.