haldis/README.md

65 lines
2.3 KiB
Markdown
Raw Normal View History

Haldis
2015-03-31 18:15:22 +00:00
=======
2019-04-05 00:48:58 +00:00
[![chat mattermost](https://img.shields.io/badge/chat-mattermost-blue.svg)](https://mattermost.zeus.gent/zeus/channels/haldis)
[![Website](https://img.shields.io/website/https/haldis.zeus.gent.svg)](https://haldis.zeus.gent)
[![Mozilla HTTP Observatory Grade](https://img.shields.io/mozilla-observatory/grade-score/haldis.zeus.gent.svg?publish)](https://observatory.mozilla.org/analyze/haldis.zeus.gent)
2019-04-05 00:45:21 +00:00
![GitHub commit activity](https://img.shields.io/github/commit-activity/y/zeuswpi/haldis.svg)
2015-03-31 18:15:22 +00:00
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.
2015-03-31 18:15:22 +00:00
Start an order and let people add items with a simple mouse-click!
No more calculating prices and making lists!
Be lazier today!
2018-03-08 22:23:02 +00:00
2019-04-05 00:04:46 +00:00
## Local setup
There is a special script to get started with the project. Just run it in the root of the project.
2019-04-05 00:05:54 +00:00
./first-setup.sh
2019-09-11 20:39:41 +00:00
2019-04-05 00:04:46 +00:00
This will create a virtual environment, install the necessary dependencies and will give you the option to seed the database.
2019-09-11 20:39:41 +00:00
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
2019-04-05 00:04:46 +00:00
2019-05-31 17:05:40 +00:00
cd app
2019-09-11 20:39:41 +00:00
python3 app.py db upgrade
2019-04-05 00:04:46 +00:00
You can now still seed the database by running
./populate-db.sh
2019-09-11 20:39:41 +00:00
2019-04-05 00:04:46 +00:00
in the root folder of the project.
Activate the virtual environment using
source venv/bin/activate
Finally run the webserver with
2019-09-11 20:39:41 +00:00
python3 app/app.py runserver
2019-04-05 00:04:46 +00:00
## Development
### Changing the database
1. Update models located in 'app/models.py'
2019-09-11 20:39:41 +00:00
2. Run `python app/app.py db migrate` to create a new migration.
3. Apply the changes to the database using `python app/app.py db upgrade`
### Adding dependencies/libraries
1. Add new dependency to the `requirements.in` file
2019-04-05 00:14:30 +00:00
2. Run `pip-compile` to freeze the dependency into the `requirements.txt` file together with it's own deps
3. Run `pip-sync` to download frozen deps
### Updating dependencies
Run `pip-compile --upgrade`
For more information about managing the dependencies see [jazzband/pip-tools: A set of tools to keep your pinned Python dependencies fresh.](https://github.com/jazzband/pip-tools)
## Authors
2019-09-11 20:39:41 +00:00
* **Feliciaan De Palmenaer** - *Initial work* - [Github](https://github.com/feliciaan)