Skip to main content

Front-end scaffold tool for your django project.

Project description

Django-Frontier

The django front-end scaffold tool you requested.

django-frontier enable you to quickly scaffold a front-end for your django apps.

currently only (react, tailwindcss and react-tailwindcss) scaffolding is available


How to guide

before you install django-frontier, please make sure you have python install and you have a working django project either with with your local python installation or a virtual environment. We recommend the latter

  1. Open your terminal and install the package using pip
$ pip install django-frontier
  1. After the installation, add the 'frontier' app to your django settings
INSTALLED_APPS = [
...
'frontier',
...
]
  1. Now you can use the frontier command by navigating to the root of your project directory, where 'manage.py' file is and run the frontier with either preset (react, tailwind, or react-tailwind) example for react, run:
$ python manage.py frontier react

or

$ ./manage.py frontier react

This generates a resources directory with your react application scaffold.

  1. You can then compile your assets by running
$ npm run dev

or

$ npm run watch

This spits out the complied assets in a static/dist directory, which you can include in your django templates as such

# settings.py
STATIC_URL = '/static/'
STATICFILES_DIRS = (str(BASE_DIR.joinpath('static')),)
{% load static %}
<html>
<head>
...
<!-- if your dist folder includes a css files -->
<link rel="stylesheet" href="{% static 'dist/app.css' %}" />
...
</head>
<body>
<!-- for your react app -->
<div id="app"></div>
<script src="{% static 'dist/index.js' %}"></script>
</body>
</html>
...

For production, run the build command to minify the js and css for a smaller bundle and replace dist/ with build/ in your templates

$ npm run watch

NOTE: You can also configure the output destination for your bundles by configuring parcel in the package.json file. For more info on parcel, check out Parcel Js


  1. If you need help using the frontier command, run:
$ ./manage.py frontier -h

Enjoy 😇

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-frontier-0.0.1.tar.gz (7.5 kB view hashes)

Uploaded Source

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