# OFA Setup Guide
Quick setup instructions for the Open-Ended Feature Aggregator (OFA) environment and Docker container.
## Prerequisites
- [Conda](https://docs.conda.io/en/latest/miniconda.html)
- [Docker](https://docs.docker.com/get-docker/)
## Installation
### Create Conda Environment
```bash
conda create -n ofa python=3.11
conda activate ofa
pip install -r requirements.txt
sudo docker build -t ofa:1 .
sudo docker run --env-file .env -p 9000:9000 ofa:1
Access the application at localhost:9000.
Python
97.9%
Dockerfile
2.1%
# OFA Setup Guide
Quick setup instructions for the Open-Ended Feature Aggregator (OFA) environment and Docker container.
## Prerequisites
- [Conda](https://docs.conda.io/en/latest/miniconda.html)
- [Docker](https://docs.docker.com/get-docker/)
## Installation
### Create Conda Environment
```bash
conda create -n ofa python=3.11
conda activate ofa
pip install -r requirements.txt
sudo docker build -t ofa:1 .
sudo docker run --env-file .env -p 9000:9000 ofa:1
Access the application at localhost:9000.
Python
97.9%
Dockerfile
2.1%