Created
January 17, 2024 16:19
-
-
Save corentinbettiol/38465f4ac834258dcf9f0c761f9f3097 to your computer and use it in GitHub Desktop.
Create a djangocms (v4) website in a few commands.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir mydumbproject | |
cd mydumbproject | |
python3 -m venv .venv | |
. .venv/bin/activate | |
python3 -m pip install django-cms | |
djangocms mydumbproject # will ask to type superuser name/email/password | |
python3 mydumbproject/manage.py runserver 0.0.0.0:8000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment