Welcome to SCE's event planner platform!
git clone https://github.com/SCE-Development/SCEvents.git
cd SCEvents
docker compose -f docker-compose.dev.yml up --build -d
NOTE: To test SCEvents together with the frontend, you'll need to run Clark separately following the instructions here
If you want Clark to talk to a locally running SCEvents instance, update Clark's config so the SCEvents base URL points to port 8002.
In Clark/src/config/config.json:
{
"SCEvents": {
"BASE_URL": "http://localhost:8002"
}
}This is the local-development setting for running Clark and SCEvents as separate processes on your machine.
For deployed environments behind Clark's nginx proxy, use:
{
"SCEvents": {
"BASE_URL": "/api/scevents"
}
}