An advanced Flask (Python) based storefront CMS.
Steps to Success.
pipenv install
You can also use regular old pip and venv if you want, I won't stop you.
cp .env.default .env
...and then edit. You can also (and should probably prefer to) set them at runtime from the command line, or in your service file (you are using one, aren't you?)
pipenv run flask db init
pipenv run flask db migrate
pipenv run flask db upgrade
Obviously, don't prefix with pipenv run if you aren't using pipenv.
gunicorn -w <number of workers> "app:create_app()"
And that's it!