forked from scribeengine/scribeengine
ScribeEngine is a flexible open source content management system written in Python.
Raoul Snyman
2c2c94c2eb
- Fix some relationships in the models - Set up theming system based on user setting - Use the "/node" endpoint for nodes, rather than "/" which will become problematic. |
||
---|---|---|
src/scribeengine | ||
tests | ||
.editorconfig | ||
.flake8 | ||
.gitignore | ||
CHANGES.rst | ||
LICENSE | ||
pyproject.toml | ||
README.rst |
ScribeEngine
ScribeEngine is a flexible open source content management system written in Python.
Get Started
The easiest way to get up and running is via a container system like Docker or podman. Use the following compose file to get up and running:
version: '3'
services:
web:
image: nginx
ports:
- 8080:80
depends_on:
- cms
cms:
image: scribeengine
depends_on:
- database
database:
image: postgres:14
Using Docker's Compose plugin, run the following command:
$ docker compose up -d
Using the Docker-Compose command:
$ docker-compose up -d
Using podman-compose:
$ podman-compose up -d