https://github.com/django-cms/cms-template
A Django template for a typical django CMS installation
https://github.com/django-cms/cms-template
Last synced: 2 months ago
JSON representation
A Django template for a typical django CMS installation
- Host: GitHub
- URL: https://github.com/django-cms/cms-template
- Owner: django-cms
- License: bsd-3-clause
- Created: 2023-11-20T20:14:04.000Z (over 1 year ago)
- Default Branch: 4.1
- Last Pushed: 2025-03-20T21:12:04.000Z (3 months ago)
- Last Synced: 2025-04-14T04:16:10.017Z (2 months ago)
- Language: Python
- Size: 98.6 KB
- Stars: 7
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Django template for a new django CMS 4 project
A Django template for a typical django CMS installation with no
special bells or whistles. It is supposed as a starting point
for new projects.If you prefer a different set of template settings, feel free to
create your own templates by cloning this repo.To install django CMS 4 by hand type the following commands:
1. Create virtual environment and activate it
```
python3 -m venv .venv
source .venv/bin/activate
```
2. Install Django, django CMS and other required packages
```
pip install django-cms
```
3. Create project `<>` using this template
```
djangocms <>
cd <>
```
4. Run testserver
```
./manage.py runserver
```Note: If you run into a problem of missing dependencies, please
update `pip` using `pip install -U pip` before running the
`djangocms` command.