|
||
---|---|---|
src | ||
.gitignore | ||
README.md | ||
activate_venv |
README.md
website-pictures2
The World's Worst Way To Do This
What
What I Did Before
My website is not hosted locally and my server is perpetually running out of space (actually, this is not true anymore???)
website-pictures1
used GitHub to host compressed and encrypted JPGs
that would then be cloned on a cloud server (OCI free tier 🙏)
and built into a static site.
This model was based around assuming the following:
- I don't want people to see these pictures without fist being authorized
- i.e. HTTP Basic Auth
- I do not trust GitHub to hold my pictures in an unencrypted format (follows from 1)
Ramiel
was the sole source of truth for building the picture directories and- the cloud server was responsible for building the static pages.
That Was Bad, Actually
The previous model was lame because:
- If I do not have access to
Ramiel
, I can't do anything- it was all symlinks oh my god
- it was literally shell scripts
- ok, no diss to shell scripts, these in particular were actually super manageable.
- the problem is that expanding them to do more sucks bigly
- key point: I never added more pictures because it was a Huge Pain
What I Will Be Doing Now
I've just confirmed that bigrack
has more than enough space to do the following:
- Store pictures compressed, locally
- you can just add to a 7z archive whenever, so uncompressed images need not exist more than transiently
- Build a static page, locally
- big if true: imagine being able to debug without doing a full rebuild on your server
- Deploy the static page to
shrimplover
- no like seriously why do I pick hostnames like this
How
python or something idk
Usage
Archive management
python main.py archive add -a PATH_TO_ARCHIVE -p FOLDER_NAME_ON_WEBSITE [Files to add]
Deployment
python main.py deploy -a PATH_TO_ARCHIVE SSH_HOST PATH_ON_REMOTE_TO_PICTURES_DIR