Open bjenmonk opened 1 year ago
Which OS do you have? For Ubuntu Linux, please see demo project installation instructions at:
https://github.com/Dmitri-Sintsov/djk-sample#installation
Comprehended minimal install of stable version:
sudo apt-get install git
python3 -m venv djk-sample
cd djk-sample
source bin/activate
git clone https://github.com/Dmitri-Sintsov/djk-sample.git
cd djk-sample
git checkout tags/v2.2.0
python3 -m pip install -U -r requirements.txt
python3 -m pip install -U -r requirements/bs5.txt
mkdir "$VIRTUAL_ENV/djk-sample/logs/"
mkdir "$VIRTUAL_ENV/djk-sample/fixtures/"
python3 manage.py makemigrations club_app event_app
python3 manage.py migrate
apt install gettext
python3 manage.py compilemessages
python3 manage.py runserver
If you want to add djk-bootstrap5
to your own project, instead of djk-sample
demo project, you have to read complete installation docs at:
https://django-jinja-knockout.readthedocs.io/en/latest/installation.html
It's a full stack framework (both Python and Javascript).
Hi Appreciate your help with installation