Skip to main content

Opinionated version of `startproject` with some popular third-party packages. Starter pack includes: whitenoise, django-environ, logging, GitHub Scripts to Rule Them All, basic Dockerfile and Makefile.

Project description

django-spinproject

Opinionated version of django-admin startproject that intends to go further and do things that startproject can't do but most people will do anyway. Here's what you get:

  • ⚛️ Whitenoise: usually you don't need that during local development but one day you're going to deploy your project and find out that it ignores the static/ folder when running under gunicorn — which is sorta fine because big applications usually serve static files separately via nginx. Smaller apps with small number of assets, however, usually serve them within the same process, which is what whitenoise is for.
  • 🔧 settings.py: it's slightly modified to also understand environment variables and .env files. This functionality requires the django-environ package. Also, app logger is mostly pre-configured for you.
  • 🔒 Support for marking PostgreSQL databases as read-only.
  • 🧰 script/bootstrap and other scripts to rule them all so your fellow developers and maintainers don't ask you how to run this thing. Current versions of these scripts optimized for use with poetry, but you can easily adapt them for any Python package manager.
  • 🏗️ Dockerfile and .dockerignore: one day your app will go to production, and we've got you covered.
  • 🏛️ Gitlab CI config: CI is a good thing.
  • ⚕️ Pre-configured linter so you can find some common problems automagically.
  • 🏃 Pre-configured pytest because you are going to need unit tests one day.
  • *️⃣ .gitignore: well, you know why.

Requirements

  • *nix system;
  • django-admin installed and available from $PATH.

Generated files will work fine in Django >= 2.0, not tested in earlier versions.

How to use

  1. Install the package: pip install django-spinproject
  2. django-spinproject <path>

Planned features

(for requests, create an issue or drop me a line at m1kc@yandex.ru)

  • Some CLI flags to switch off the things you don't need.

Changelog

v1.3.0: Regular release

  • 74d6ff5 Fix Docker build failing because of new Debian release. Closes #12.
  • ce0255f Set CI=true when running cibuild. Closes #15.
  • 3d54ece Dockerfile: run migrate on boot
  • f9700fd Allow script/setup to create .env file. Closes #13.
  • 13230bb Add ruby-foreman to Docker image
  • 180a360 Remove gunicorn options from Dockerfile. Closes #16.
  • d2bf875 Warn about psycopg2 dependency. Closes #10.
  • 0d05f5e Ignore *~ files. Closes #11.
  • 3933d52 Use script/setup in CI. Closes #17.

Jun 21, 2021

  • pytest support 'cause you don't want to waste time on setting that up (give it a try: script/test);
  • Always call the settings directory main 'cause that's the only way to keep people sane when switching projects;
  • Add GitLab CI config generator 'cause you don't want to write one yourself;
  • flake8 isn't expected to be installed on your host system anymore.

Apr 16, 2021

  • .gitignore to keep your VCS clean;
  • .dockerignore to keep your Docker images clean;
  • make clean to get rid of __pycache__ files when you need that;
  • No need to install django-postgres-readonly anymore.

Feb 5, 2021

  • To avoid confusion, python3 executable is now used instead of python.

Feb 20, 2020

  • Makefile now includes an additional target, lint, for linting your project with flake8. Give it a try: $ make lint.
  • Dockerfile now works properly with most recent version of Poetry.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-spinproject-1.3.1.tar.gz (13.6 kB view hashes)

Uploaded Source

Built Distribution

django_spinproject-1.3.1-py3-none-any.whl (16.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page