Homunculus is a simple app to manage biochemistry lab inventories.
It supports:
- Multiple users with different permissions
- Managing multiple rooms with multiple cabinets, with a shelf granularity.
- Managing different types of materials with different configuration, allowing to specify the structure of each box.
- Updating the current inventory, keeping a History of the usage of each material.
- Immediate Alerts when a material is about to finish.
- Scheduled Reports when a material is about to finish.
This is only the React-based frontend of Homunculus. To run the whole application, check the full-fledged compose repo.
However, to run that, you will still need an docker image for this frontend. You can build it running the following commands:
git clone https://github.com/CodeDrillBrigade/Homunculus-desk.git
cd Homunculus-desk
echo "REACT_APP_APIURL=<YOUR_BACKEND_URL>" >> .env
docker build . -t homunculus-desk:latest<YOUR_BACKEND_URL> with the actual URL of your Homunculus backend.
