In progress
you can run it using docker compose file
1- you must have docker and docker compose installed and running locally docker docs
2- must have an .env file that looks like this
# DB_CREDS
POSTGRES_SERVER=db
POSTGRES_PORT=5432
POSTGRES_DB=app
POSTGRES_USER=postgres
POSTGRES_PASSWORD=changethis
#AZURE STORAGE BLOB TOKEN
AZURE_SAS_TOKEN=
#GITHUB PAT TOKEN
PAT_GITHUB=
#AZURE_CREDS
AZURE_SUBSCRIPTION_ID=
AZURE_TENANT_ID=
AZURE_CLIENT_ID=
AZURE_CLIENT_SECRET=
# PYTHON CONTAINER MANGEMENT SERVICE
CREATE_CONTAINER_DOMAIN=http://localhost:8080
how to run it
docker compose up -d
and brig it down with
docker compose down -v
you can change the backend service URL form /src/assets/config.js
to change the URL of you configuration
window.VITE_API_URL = "http://localhost:4444/";
if you want to use a deffrent version of our frontend image you can choose from available container images in DockerHub
React, TailwindCSS