No installation needed - works in your browser!
Demo accounts:
- Username:
Sarah/ Password:demo123 - Username:
Emma/ Password:demo123
cd backend
cp .env.example .env # copy environment config
npm install # install dependencies
node server.js # start the serverYou should see:
🌸 StudyNest backend running on http://localhost:3001
🌱 Created new database
✅ All tables ready
Just open frontend/index.html in your browser , no build step needed 🌸
- role: Supporter 🌸
- role: Student 📚
Then you can send each other love notes! 💌
studynest/
│
├── demo.html
├── assets/
├── images/
└──videos/
├── index.html
├── .gitignore
├── README.md
│
├── backend/
│ ├── .env.example
│ ├── .gitignore
│ ├── package.json
│ ├── server.js
│ ├── db.js
│ │
│ ├── middleware/
│ │ └── auth.js
│ │
│ └── routes/
│ ├── auth.js
│ ├── notes.js
│ ├── timer.js
│ ├── mood.js
│ └── goals.js
│
└── frontend/
├── assets/
│ ├── images/
│ └──videos/
│
├── index.html
├── demo.html
├── css/
│ └── style.css
└── js/
├─── app.js
└── demo.js