Dora is an application web to, do, drag, and drop. designed to take notes what to do today, yesterday, or tomorrow
| Name | Role |
|---|---|
| Aldito Dwi Putra Sitompul | Backend |
| Fadli Ramadhan | Frontend |
empty
- Express Js Framework: Lighweight Backend Framework.
- Prisma ORM: Powerful database interaction with schema-based type safety.
- React: Component based UI and light client server render.
To set up the project locally or for deployment, ensure the following tools are installed:
-
Node.js (v16 or higher)
-
Git
To configure the project, create a .env file in the root directory. Add the following environment variables:
# Database connection URL
DATABASE_URL=your_database_connection_url (if want local)
# PORT
PORT=your_dedicated_port_backend
# SUPABASE
SUPABASE_URL=your_supabase_url (if want online)
SUPABASE_KEY=_your_supabase_key
SUPABASE_JWT_SECRET=your_supabase_jwt- Clone the Repository
- Install Dependencies
npm install- Run Database Migrations
npx prisma migrate dev- Start the Development Server
npm run dev