Skip to content
/ Haldis Public

Haldis is your friendly neighbourhood servant. He exists so lazy fucks like you and me don't need to keep tabs of who is ordering what from where.

License

Notifications You must be signed in to change notification settings

ZeusWPI/Haldis

Repository files navigation

Haldis

chat mattermost Website Mozilla HTTP Observatory Grade

GitHub commit activity

Haldis is your friendly neighbourhood servant. He exists so lazy fucks like you and me don't need to keep tabs of who is ordering what from where. Start an order and let people add items with a simple mouse-click! No more calculating prices and making lists! Be lazier today!

Local setup

Docker

From the root of the project, run:

docker compose up

This uses the config.docker.py file as the config.

Manual

There is a special script to get started with the project. Just run it in the root of the project. Note: this script might require you to install a certain python version, you can do this using your favorite tool e.g. pyenv

./first-setup.sh

This will create a virtual environment, install the necessary dependencies and will give you the option to seed the database.

If you are using a database other then sqlite you will first need to configure the correct URI to the database in the generated 'config.py' file. Afterwards upgrade the database to the latest version using

cd app
flask --app migrate_app db upgrade

You can now still seed the database by running, note that you might want to put your name in the HALDIS_ADMINS in app/config.py

./populate-db.sh

in the root folder of the project.

Activate the virtual environment using

source venv/bin/activate

Finally run the webserver with

`flask run --port=8000 --debug`

Make sure to use localhost instead of 127.0.0.1 if you want to be able to login.

Manual 2

Get correct python version, see .python-version. Use asdf or pyenv or something

Make a venv

python -m venv venv

Activate venv

source venv/bin/activate

Install packages

pip install poetry
poetry install

Make config

cp app/config.example.py app/config.py

Look in config and set stuff (If using sqlite, set an absolute path!)

Setup db

cd app
flask --app migrate_app db upgrade

Run

flask run --port=8000 --debug

Profit

Development

Changing the database

  1. Update models located in 'app/models.py'
  2. Run flask db migrate to create a new migration.
  3. Apply the changes to the database using flask --app migrate_app db upgrade

Adding dependencies/libraries

  1. Add new dependency by running poetry add <package>
  2. Run poetry install to add the dependency to the lock file

Updating dependencies

Run poetry update

Problems

No module named '_sqlite3'

-> install libsqlite3-dev or equivalent

Error: Failed to find Flask application or factory in module 'app'. Use 'app:name' to specify one.

-> cd app

Production

To prepare the application in a production environment, follow the same steps as for Local setup up to and including ./populate-db.sh.

In app/config.py:

  • Set DEBUG to False
  • Set REFRESH_OSM to True (to refresh all data every time the application starts)

See Flask's deployment documentation.

Set the server's Python interpreter to /path/to/haldis/venv/bin/python. Doing source venv/bin/activate is not necessary when that binary is used.

About

Haldis is your friendly neighbourhood servant. He exists so lazy fucks like you and me don't need to keep tabs of who is ordering what from where.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published