This is the CoreUI v2 template that can be used as a base template in Django.
- Clone this repo
- Create a Django project
- Create a App Core
- Copy this template on
core/templates
folder
Contains:
- contrib/env_gen.py
- requirements.txt
- select2.js
- Clone this repository.
- Create virtualenv with Python 3.
- Active the virtualenv.
- Install dependences.
- Run the migrations.
git clone https://github.com/rg3915/coreui-django-boilerplate-v2.git
cd coreui-django-boilerplate-v2
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python contrib/env_gen.py
python manage.py migrate
- Clone esse repositório.
- Crie um virtualenv com Python 3.
- Ative o virtualenv.
- Instale as dependências.
- Rode as migrações.
git clone https://github.com/rg3915/coreui-django-boilerplate-v2.git
cd coreui-django-boilerplate-v2
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python contrib/env_gen.py
python manage.py migrate