Skip to content

Instantly share code, notes, and snippets.

@corentinbettiol
Created January 17, 2024 16:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corentinbettiol/38465f4ac834258dcf9f0c761f9f3097 to your computer and use it in GitHub Desktop.
Save corentinbettiol/38465f4ac834258dcf9f0c761f9f3097 to your computer and use it in GitHub Desktop.
Create a djangocms (v4) website in a few commands.
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