Content for my tabletop RPG site (orb.moe).
Iet uz failu
Brian S. Stephan fd7856e4dc
updates on the play-by-chat stuff for Adventuring!
2024-01-30 16:47:05 -06:00
custom-static/css tweaks to the dungeon theme regarding figure and pre styling 2024-01-22 13:41:43 -06:00
pages updates on the play-by-chat stuff for Adventuring! 2024-01-30 16:47:05 -06:00
.gitignore move 13th age pages from bss.zone to here 2021-06-08 22:48:02 -05:00
README.md contributing information on the site + README stuff 2022-11-30 23:57:37 -06:00
config.py cleaning up the config file 2023-03-24 20:40:29 -05:00
git-touch-all.sh add my usual script to touch files as git datetime 2022-09-15 21:10:13 -05:00

README.md

ttrpg-site

Content for my tabletop RPG site, orb.moe.

Contributing

The site is mostly written in Markdown, and can be edited in whatever text editor you desire. If you make changes, you just need to send me a merge request or Git patch set. I recommend using my Git site to either fork the project or request direct access to my copy of the project, and submit your merge request that way.

Hosting

The companion software to this repository is my CMS, incorporeal-cms. If you want to run your own version, to see the content how it'd be served, here is the short version of a local setup:

% mkdir orb.moe
% cd orb.moe
% virtualenv --python=python3.10 env-py3.10
% source env-py3.10/bin/activate
% pip install -U -f https://bss.zone/tech/incorporeal-cms/ incorporeal-cms[dot]
% mkdir env-py3.10/var
% mkdir env-py3.10/var/incorporealcms-instance
% [copy this repository's files into env-py3.10/var/incorporealcms-instance/]
% FLASK_APP=incorporealcms FLASK_ENV=development flask run -h 0.0.0.0