k4ml / siteplan

A new way to Django development. Start small, grow big
ISC License
3 stars 0 forks source link

A new way to build Django website. Get away from the initial boilerplate project and apps. Siteplan comes with CMS, e-commerce store, payment gateway, task queue and many more features commonly found in modern websites.

Start small, grow big.

Quickstart

Create the app directory:-

mkdir myapp && cd myapp
python -mvenv venv
venv/bin/pip install git+https://github.com/k4ml/siteplan.git

Then run siteplan:-

venv/bin/siteplan init-app
venv/bin/siteplan run

It possible to add your own views (controller) and models for more control and but most of the time you just want to customize the templates when working with siteplan. The templates are in myapp/templates/ directory.

Requirements