Missing install instructions for dev & prod #38
Labels
No labels
Bug
Feature
Feedback Wanted
Refactoring
Won't Do
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: waifu/kemoverse#38
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Docs don’t have installation steps for either development or production. This can make it a bit tricky for new people to setup a server or help in the development.
Adding a simple guide or section that walks through setting things up in both environments would make onboarding smoother.
We also don't explicitly support multi-environment setups yet. Thankfully now that we've moved all the configuration to an ini file, we can just swap out config files to run in dev/production mode and have the mode toggled via an environment variable:
KEMOVERSE_ENV = dev
for development (uses config_dev.ini).KEMOVERSE_ENV = prod
for production (uses config_prod.ini).If
KEMOVERSE_ENV
is unset, raise an error.Closing