https://github.com/anuran-roy/wd202-l10-milestone
https://github.com/anuran-roy/wd202-l10-milestone
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/anuran-roy/wd202-l10-milestone
- Owner: anuran-roy
- License: mit
- Created: 2022-02-27T21:47:44.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-15T18:17:18.000Z (over 2 years ago)
- Last Synced: 2023-03-05T22:59:50.096Z (about 2 years ago)
- Language: Python
- Size: 82 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# milestone
L10 milestone
[](https://github.com/cookiecutter/cookiecutter-django/)
[](https://github.com/ambv/black)License: MIT
## Settings
Moved to [settings](http://cookiecutter-django.readthedocs.io/en/latest/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 an **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 milestone
### 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](http://cookiecutter-django.readthedocs.io/en/latest/live-reloading-and-sass-compilation.html).
## Deployment
The following details how to deploy this application.
### Heroku
See detailed [cookiecutter-django Heroku documentation](http://cookiecutter-django.readthedocs.io/en/latest/deployment-on-heroku.html).