Camply is where college students manage everything that matters — from exams to events, friends to clubs, all in one place. It's not another study app or social network — it's the space built just for your college life. Quiet when you need it, active when you want it. Whether you're trying to pass or make a mark, Camply fits how you move through college.
student_desk/
: Python backend using Google ADK for student assistancecamply-web/
: React/TypeScript frontend application.cursor/
: IDE configuration and rules for consistent development
- Python 3.x
- pip
- Create & activate virtual environment:
# Create venv
python -m venv .venv
# Activate venv - choose based on your OS:
# Mac / Linux
source .venv/bin/activate
# Windows CMD:
.venv\Scripts\activate.bat
# Windows PowerShell:
.venv\Scripts\Activate.ps1
- Install dependencies:
pip install google-adk
# Verify installation
pip show google-adk
- Node.js (LTS version)
- npm/yarn
- Navigate to web directory:
cd camply-web
- Install dependencies:
npm install
- Start development server:
npm run dev
The app will be available at http://localhost:5173
by default.
The .cursor
directory contains IDE configurations and rules that help maintain consistent code quality across the project. This includes:
- Code formatting rules
- Editor preferences
- Project-specific settings