Skip to content

Latest commit

Β 

History

History
71 lines (51 loc) Β· 1.63 KB

File metadata and controls

71 lines (51 loc) Β· 1.63 KB
# πŸ“¦ Feed Formulation

Feed Formulation is a tool to help automate and optimize animal feed formulations using mathematical models and algorithms.

## πŸ“₯ Clone the repository

Clone the repository to your local machine:

```bash
git clone https://github.com/keemsisi/feed-formulation.git

Navigate into the project directory:

cd feed-formulation

πŸ“¦ Set up a virtual environment (recommended)

On Unix/macOS:

python3 -m venv venv
source venv/bin/activate

On Windows:

python -m venv venv
venv\Scripts\activate

πŸ“₯ Install dependencies

Install the required Python packages:

pip install -r requirements.txt

βš™οΈ Run the application

python app.py

πŸ“š Project structure

feed-formulation/
β”œβ”€β”€ .idea/               # IDE configuration files
β”œβ”€β”€ .vscode/             # IDE configuration files
β”œβ”€β”€ templates/           # Templates for the formulator service
β”œβ”€β”€ venv/                # Virtual environment
β”œβ”€β”€ animal_db.py         # Animal database interaction module
β”œβ”€β”€ app.py               # Main application entry point
β”œβ”€β”€ formulator_service.py # Feed formulation logic
β”œβ”€β”€ ingredient_db.py     # Ingredient database interaction module
β”œβ”€β”€ main.py              # Main application execution file
β”œβ”€β”€ README.md            # Project README
β”œβ”€β”€ start-server.py      # Start server script
β”œβ”€β”€ stop-server.py       # Stop server script
└── testing.py           # Testing scripts
``

## πŸ’¬ Contributing

Contributions are welcome! Please open an issue or submit a pull request.