Run with:
uvicorn main:app --reload
Create a data.json to store members:
{
"clubs": {
"amFOSS": {
"name": "amFOSS",
"members": [
{ "id": "AM.EN.U4AIE22069", "name": "Bob" },
{ "id": "AM.EN.U4AIE22050", "name": "Charlie" }
]
},
"Bi0s": {
"name": "Bi0s",
"members": [
{ "id": "AM.EN.U4AIE22006", "name": "Eve" },
{ "id": "AM.EN.U4AIE22007", "name": "Frank" }
]
}
}
}
Create a .env file with your Cloudflare tunnel token:
CLOUDFLARE_TUNNEL_TOKEN=xxx
Start the containers:
docker compose up