sirodoht / oscarator.com

Share your Oscar predictions.

Home Page:https://oscarator.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

oscarator.com

Share your Oscar predictions.

Development

This is a Django codebase. Check out the Django docs for general technical documentation.

Structure

The Django project is oscarator. There is one Django app, main, with all business logic. Application CLI commands are generally divided into two categories, those under python manage.py and those under make.

Dependencies

This project is configured using Nix and direnv and venv. After cd-ing into it:

pip install -r requirements_dev.txt

Or for production use:

pip install -r requirements.txt

This project also uses pip-tools for dependency management.

Serve

To run the Django development server:

python manage.py runserver

Environment variables

One can create a new file named .envrc in the root of this project. An example of what this file should look like exists, named .envrc.example.

These are the environment variables supported. The only one that is required is the database URL.

DATABASE_URL=postgres://username:password@localhost:5432/oscarator
SECRET_KEY=thisisthesecretkey
EMAIL_HOST_USER=smtp_user
EMAIL_HOST_PASSWORD=smtp_password
DEBUG=1

Database

This project uses PostgreSQL. See above on how to configure it using the .envrc file.

After creating your local database, you need to apply the migrations:

python manage.py migrate

Code linting & formatting

The following tools are used for code linting and formatting:

  • black for code formatting.
  • isort for imports order consistency.
  • flake8 for code linting.

To use:

make format
make lint

License

This software is licensed under the MIT license. For more information, read the LICENSE file.

About

Share your Oscar predictions.

https://oscarator.com

License:MIT License


Languages

Language:Python 53.2%Language:HTML 24.9%Language:CSS 19.1%Language:Makefile 1.8%Language:Shell 0.9%Language:Nix 0.1%