timotheus / python-skeleton

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

python-skeleton

This skeleton for Django and python CLI projects. It provides a directory structure for projects during development and deployment.

How to create an project using this skeleton

Make sure you have Django >= 1.9 installed.

> django-admin startproject myproject --template=https://github.com/timotheus/python-skeleton/archive/master.zip --extension=py,ini,in,yaml

Running the project

Once you've successfully started the Django project using the skeleton template, you'll need create the virtualenv and install a few Python dependancies.

> cd myproject
> virtualenv venv36 -p <path to python36>
> source venv36/bin/activate
> pip install -r requirements.txt
> python manage.py runserver

Authors

About


Languages

Language:Python 100.0%