All Projects → khadegd → django-webpack-starter

khadegd / django-webpack-starter

Licence: MIT license
Django Webpack starter template for using Webpack 5 with Django 3.1 & Bootstrap 4. Yes, it can hot-reload.

Programming Languages

python
139335 projects - #7 most used programming language
javascript
184084 projects - #8 most used programming language
HTML
75241 projects
SCSS
7915 projects

Projects that are alternatives of or similar to django-webpack-starter

django-manifest-loader
Simplifies webpack configuration with Django
Stars: ✭ 105 (+101.92%)
Mutual labels:  assets, django-webpack-loader
Django Webpack Loader
Transparently use webpack with django
Stars: ✭ 2,327 (+4375%)
Mutual labels:  assets, django-webpack-loader
laravel-assets
Laravel Assets manager
Stars: ✭ 13 (-75%)
Mutual labels:  assets
rapide
WIP! do not use just yet - Opinionated Vite + Alpine.js starter PWA template
Stars: ✭ 15 (-71.15%)
Mutual labels:  starter-template
ProjectCleaner
Unreal engine plugin for managing all unused assets and empty folders in project.
Stars: ✭ 53 (+1.92%)
Mutual labels:  assets
tailwind-react-next.js-typescript-eslint-jest-starter
Starter template for building a project using React, Typescript, Next.js, Jest, TailwindCSS and ESLint.
Stars: ✭ 80 (+53.85%)
Mutual labels:  starter-template
Unity-delayed-asset
**DEPRECATED** Plugin for Unity that allows to assign assets in the inspector while preventing Unity from automatically loading the assets in memory when a scene is loaded
Stars: ✭ 19 (-63.46%)
Mutual labels:  assets
Unity TransparentWindowManager
Make Unity's window transparent and overlay on desktop.
Stars: ✭ 91 (+75%)
Mutual labels:  assets
fingerprint-brunch
A brunch plugin for cache busting assets
Stars: ✭ 15 (-71.15%)
Mutual labels:  assets
fastify-bankai
Bankai assets compiler for Fastify
Stars: ✭ 15 (-71.15%)
Mutual labels:  assets
Unity NormalVisualizerWithGizmo
Visualize normal on vertex or surface with Gizmo.
Stars: ✭ 38 (-26.92%)
Mutual labels:  assets
OCSInventory-Docker-Image
Docker image for OCSInventory Server
Stars: ✭ 54 (+3.85%)
Mutual labels:  assets
SecureAssetDownload
Craft CMS plugin for secure asset download URLs
Stars: ✭ 22 (-57.69%)
Mutual labels:  assets
react-bootstrap-starter
A react-bootstrap starter template with react-router
Stars: ✭ 27 (-48.08%)
Mutual labels:  starter-template
enlite-starter
Enlite Starter - React Dashboard Starter Template with Firebase Auth
Stars: ✭ 28 (-46.15%)
Mutual labels:  starter-template
disclosedassets
DEPRECATED Allow your clients to find asset sub-folders by disclosing them by default
Stars: ✭ 13 (-75%)
Mutual labels:  assets
RxAssetManager
An RxJava2 implementation of the Android AssetManager.
Stars: ✭ 53 (+1.92%)
Mutual labels:  assets
assets
Assets management
Stars: ✭ 17 (-67.31%)
Mutual labels:  assets
spring-boot-java-swing-reservations
The project aims to present how to connect Spring Boot 2 and Java Swing GUI widget toolkit. All application dependencies are provided by Docker Compose. There are also static code analysis tools like FindBugs and Checkstyle.
Stars: ✭ 86 (+65.38%)
Mutual labels:  starter-template
opendev
OpenDev is a non-profit project that tries to collect as many resources (assets) of free use for the development of video games and applications.
Stars: ✭ 34 (-34.62%)
Mutual labels:  assets

Django Webpack Starter

Hello fellow human. The repo uses

Python 3.9.*
Django 3.1.*
Webpack 5.4.*
Bootstrap 4.5.*
Pipenv

If you have any questions tweet me @khadegd.

Installing

Run the following commands.

git clone [email protected]:khadegd/django-webpack-starter.git demo
python3 -m venv .venv
source .venv/bin/activate
pip install pipenv
pipenv install
yarn

Hot reload:

Update setting.py -> WEBPACK_LIVE_SERVER = True
yarn start
python manage.py runserver_plus 0.0.0.0:8000

One off development build:

yarn run build-dev
python manage.py runserver_plus 0.0.0.0:8000

Production mode:

DEBUG = True
yarn run build-prod
python manage.py collectstatic
python manage.py runserver_plus 0.0.0.0:8000 --insecure

Thanks

Authors

License

This project is licensed under the MIT License - see the LICENSE file for details

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].