This repository serves to provide an improved solution to printing standardized labels for the chemisty department. This program looks to replace the currently used solution.
The repository should prioritize; facilitated code handovers, ease of use for the end user, and easy database management, both for users and developers.
To run on a linux distribution it's recommended to use a virtual environment.
Download the appropriate dependencies according to use case:
pip install -r requirements/base.txt
(Optional – for local development, testing, linting, etc.):
pip install -r requirements/dev.txt
Ensure nescesary environment variables in a .env file, expected variables can be found in .env.dist.
Apply database migrations, to initalize schema:
python manage.py migrate
Run the development server:
python manage.py runserver