📥 Instructions
Follow these steps to clone the repository, set up the environment, and run the ATHENA dashboard.
💻 ATHENA Dashboard (Local)
Step 1. Open your terminal or command prompt.
Step 2. Clone the ATHENA repository from GitHub:
Step 3. Navigate to the project directory:
Step 4. Create a virtual environment to isolate dependencies:
Step 5. Activate the virtual environment:
Step 6. Upgrade pip to the latest version:
Install Dependencies
Step 7. Install the required Python packages using requirements.txt:
Step 4. Make sure Poetry is installed:
Step 5. Configure a virtual environment to isolate dependencies:
Step 6. Activate the virtual environment:
Update Dependencies
Step 7. Add, remove, or update packages:
Step 8. Run the ATHENA Dashboard
Start the dashboard application:
Open your web browser and navigate to:
🐳 Docker
You can also run the dashboard using the pre-built Docker image.
Using Docker CLI
docker run -p 8050:8050 \
-e DASH_HOST=0.0.0.0 \
-e DASH_PORT=8050 \
ghcr.io/fox-techniques/athena-dash-app:latest
Then open your browser and go to:
Using Docker Compose
Add this to your docker-compose.yml
:
services:
athena:
image: ghcr.io/fox-techniques/athena-dash-app:latest
environment:
- DASH_HOST=0.0.0.0
- DASH_PORT=8050
ports:
- "8050:8050"
Then start the service:
Navigate to:
🤩 CONGRAGULATIONS! Continue to the demo. Let's keep going...🚀