This commit is contained in:
cube
2026-03-28 22:52:56 +00:00
parent dd66e6f3b7
commit 5d3fc47286

View File

@@ -44,21 +44,29 @@ attach to existing tmux window
clone the repo and set up virtual env clone the repo and set up virtual env
`git clone https://tea.cubes.link/cube/myriad.git` `git clone https://tea.cubes.link/cube/myriad.git`
`cd myriad` `cd myriad`
`python3 -m venv venv` `python3 -m venv venv`
`source venv/bin/activate` `source venv/bin/activate`
install necessary packages in the virtual env install necessary packages in the virtual env
`pip install flask` `pip install flask`
`pip install waitress` `pip install waitress`
make sure all directories exist make sure all directories exist
`mkdir instance` `mkdir instance`
`mkdir myriad/static/icons` `mkdir myriad/static/icons`
`mkdir myriad/static/blinkies` `mkdir myriad/static/blinkies`
`mkdir myriad/static/stamps` `mkdir myriad/static/stamps`
`mkdir myriad/static/tmp` `mkdir myriad/static/tmp`
copy sample from readme and paste into the following copy sample from readme and paste into the following
@@ -84,6 +92,7 @@ start running the site
after running and setting up first user stop waitress (CTRL+C), then edit the config to disable user registration for security after running and setting up first user stop waitress (CTRL+C), then edit the config to disable user registration for security
`sudo nano instance/config.py` `sudo nano instance/config.py`
`REGISTRATION = False` `REGISTRATION = False`
## updating ## updating