ScribeEngine is a flexible open source content management system written in Python.
Go to file
2024-11-19 19:46:48 -06:00
src/scribeengine Initial import 2024-11-19 19:46:48 -06:00
tests Initial import 2024-11-19 19:46:48 -06:00
.editorconfig Initial import 2024-11-19 19:46:48 -06:00
.flake8 Initial import 2024-11-19 19:46:48 -06:00
.gitignore Initial import 2024-11-19 19:46:48 -06:00
CHANGES.rst Initial import 2024-11-19 19:46:48 -06:00
LICENSE Initial import 2024-11-19 19:46:48 -06:00
pyproject.toml Initial import 2024-11-19 19:46:48 -06:00
README.rst Initial import 2024-11-19 19:46:48 -06:00

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