walison17 / django-quickstart

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Django Quickstart

Deploy a fully configured Django Application the fastest way!

This template includes:

  • Easy settings setup with Decouple
  • Use of URL's to manage database access
  • Static assets serving with dj-static with a WSGI server

Usage

Lets create your project, you will not clone this repo, just follow the instructions bellow.

NOTE: You may need need to replace myproject placeholder to your project's name, it can break the installation.

mkdir myproject
cd myproject
python -m venv .venv --upgrade-deps
source .venv/bin/activate
pip install django

Now we can pull Django Quickstart Structure to Project

django-admin startproject --template https://github.com/walison17/django-quickstart/archive/master.zip --name=Procfile,.env.example,pytest.ini myproject .

And then, proceed with the installation of quickstart's dev requirements.

pip install -r requirements-dev.txt

Create your .env file

cp .env.example .env

Install pre-commit hooks

pre-commit install

Last but not least, deploy our app in heroku:

IMPORTANT: Before doing so, you will need to install and login into heroku-cli

git init
git add .
git commit -m 'Start'
heroku create myproject
heroku config:set DEBUG=True SECRET_KEY=`cat .env | grep SECRET_KEY | cut -d = -f 2` ALLOWED_HOSTS="*"
git push heroku master

About


Languages

Language:Python 91.2%Language:HTML 7.5%Language:Shell 1.4%Language:CSS 0.0%