Skip to content

Setup to use django as micro framework for quick scripting.

Notifications You must be signed in to change notification settings

edhedges/edjmicro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

edjmicro - A simple boilerplate for using django as a micro framework

Inspiration comes from here and structure comes from my origin boilerplate here.

Requirements to be able to start a project:

If the requirements have been met add a bash function to either your .bash-profile or .bashrc. I named my function mkdjmicroproj which runs all the commands necessary to start the project. Here it is:

mkdjmicroproj () {
    mkproject --no-site-packages --promp=$1: $1 &&
    git init &&
    git pull [email protected]:edhedges/edjmicro.git master &&
    rm README.md &&
    pip install -r conf/requirements.txt &&
    chmod +x manage.py &&
    ./manage.py new_secret &&
    ./manage.py runserver
}

The goal of this project is to make a very functional django boilerplate while keeping it as lightweight as possible.

About

Setup to use django as micro framework for quick scripting.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages