You can access it here:
🔗 GSoC 2025 Feature List
Please follow our Contribution guide to start contributing to this repo.
Create .env file with following environments:
NEXT_PUBLIC_BACKEND_URL="http://127.0.0.1:8000"
NEXT_PUBLIC_REALTIME_URL="http://localhost:8888"Run the development server:
# Install dependencies
yarn install
# Run server
yarn devOR Running app in docker container
# Build docker image locally
docker build . --build-arg NEXT_PUBLIC_BACKEND_URL=http://localhost:8000 -t scicommons-frontend:latest
# Before running docker compose, update the docker image name in docker-compose.dev.yml file
docker compose -f docker-compose.dev.yml up
# detached mode
docker compose -f docker-compose.dev.yml up -d
