Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ergo/ziggurat_cms
Some experimental CMS tht I've been playing with - do not use in production for now
https://github.com/ergo/ziggurat_cms
Last synced: about 14 hours ago
JSON representation
Some experimental CMS tht I've been playing with - do not use in production for now
- Host: GitHub
- URL: https://github.com/ergo/ziggurat_cms
- Owner: ergo
- Created: 2018-04-26T18:00:13.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-27T14:57:45.000Z (almost 2 years ago)
- Last Synced: 2024-11-05T11:49:52.351Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 3.08 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 71
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# docker start
mkdir rundir
docker-compose up# docker dev start
USER_UID=`id -u` USER_GID=`id -g` docker-compose up
# create fresh db
docker-compose exec web ziggurat_cms_db_migrate config.ini
# populate with basic entriesdocker-compose exec web ziggurat_cms_db_initialize config.ini
# using static generators to build assets when required
# admin
docker-compose run statics_admin yarn build# front
docker-compose run statics_front yarn build