CalmSphere is an AI-driven mental health platform designed to help you navigate stress, anxiety, and emotional well-being effortlessly. Through a simple and intuitive survey, CalmSphere understands your concerns and provides easy, actionable solutions tailored to your needs .
calmsphere/
├── frontend/ # React frontend
│ ├── src/
│ │ ├── components/ # React components
│ │ ├── pages/ # Page components
│ │ ├── services/ # API services
│ │ ├── styles/ # CSS/SCSS files
│ │ ├── utils/ # Utility functions
│ │ └── types/ # TypeScript type definitions
│ ├── public/ # Static files
│ └── package.json # Frontend dependencies
│
├── backend/ # Django backend
│ ├── src/
│ │ ├── api/ # API endpoints
│ │ ├── core/ # Core functionality
│ │ └── utils/ # Utility functions
│ ├── tests/ # Backend tests
│ └── requirements.txt # Backend dependencies
│
└── README.md # Project documentation
cd fe
npm install
npm run devcd be
python -m venv venv
source venv/bin/activate # On Windows: .\venv\Scripts\activate
pip install -r requirements.txt
python manage.py runserver