The best creative talent on campus is just a click away with our platform. Connect with top students and start collaborating on your next big project today.
- Install dependencies for the frontend.
cd frontend npm install - Install dependencies for the backend.
cd ../backend pipenv shell pipenv install - Create a
.envfile in thebackenddirectory with the following variables:DEBUG=True SECRET_KEY=your-secret-key - Run migrations to create the database tables.
python manage.py makemigrations python manage.py migrate
- Create a superuser to access the admin interface.
python manage.py createsuperuser
-
Start the backend server.
cd backend python manage.py runserver -
Start the frontend server.
cd frontend npm start -
Access the application at
http://localhost:3000/. -
Access using Docker by running
docker-compose up --build
- React
- Django
- PostgreSQL
- HTML
- CSS
- JavaScript
- Docker







