This commit is contained in:
cube
2026-03-23 22:27:54 +00:00
parent ee55e39a4e
commit 9c37b028f8
4 changed files with 154 additions and 3 deletions

View File

@@ -8,6 +8,8 @@ in the blog view, member privacy outweighs individual post privacy. if a private
the blinkies and stamps stuff is literally just because i want an easy way to upload them when i find them. and im the dev so i get to decide mwa ha ha
make sure blinkies are actually blinkie-sized, and stamps are likewise stamp-sized. too much variation in size will make the layout weird. there's not validation because its designed just to make uploading the images not require ftp + manual code as i had been doing before.
# dev set up (windows)
- after cloning, run `py -3 -m venv .venv` in the root directory and then `.venv\Scripts\activate`
@@ -38,6 +40,7 @@ STAMPS_UPLOAD_FOLDER = 'myriad/static/stamps' # where site assets "stamps" will
INLINE_UPLOAD_FOLDER = 'myriad/static/inline' # where site assets "misc inline" will be stored
MISC_UPLOAD_FOLDER = 'myriad/static/misc' # where other small images will be stored
THEMES_FOLDER = 'myriad/static/themes' # where theme choices will be stored
TMP_FOLDER = 'myriad/static/tmp' # folder for creating export files
```
# usage