Easy to manage tasks and reminders
This application is a full-featured task management application that allows you to:
- Create multiple task lists to organize your activities
- Add items to your lists
- Mark items as complete
- Set due dates for your tasks
- Schedule reminders for important tasks
- Archive lists you no longer need
- Delete lists and items
The application uses PostgreSQL for data storage and Redis for caching reminders.
Check out the live application at https://todoist.cloud
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx
. The page auto-updates as you edit the file.
This project uses next/font
to automatically optimize and load Geist, a new font family for Vercel.
This project uses PostgreSQL and Redis for data storage. To simplify local development, a Docker Compose configuration is provided.
- Docker
- Docker Compose (usually included with Docker Desktop)
- Start PostgreSQL and Redis containers:
docker-compose up -d
-
The services will be available at:
- PostgreSQL:
localhost:5432
(User: todoist, Password: aIU0Ys5hrBPho647FLBpzl+Q37IM5mQhTgUhTqt25mE=, Database: todoist) - Redis:
localhost:6379
- PostgreSQL:
-
Update your
.env
file to connect to these services:
DATABASE_URL="postgresql://todoist:aIU0Ys5hrBPho647FLBpzl+Q37IM5mQhTgUhTqt25mE=@localhost:5432/todoist?schema=public"
REDIS_URL="redis://localhost:6379"
- Run database migrations:
npx prisma migrate dev
To stop the containers:
docker-compose down
To stop and remove all data volumes:
docker-compose down -v
This project includes comprehensive unit tests for components and API routes. The tests are written using Jest and React Testing Library.
src/__tests__/components/
- Tests for React componentssrc/__tests__/api/
- Tests for API routessrc/__tests__/utils/
- Tests for utility functionse2e-tests/
- End-to-end tests using Playwright
To run the unit tests:
npm test
To run tests in watch mode (useful during development):
npm run test:watch
To run end-to-end tests with Playwright:
npm run test:e2e
To run end-to-end tests with UI mode (for debugging):
npm run test:e2e:ui
To view the Playwright test report:
npm run test:e2e:report
The end-to-end tests cover the following functionality:
- Home Page: Verifies that the home page loads correctly and displays the expected UI elements.
- Todo List Creation: Tests the creation of new todo lists.
- Responsive Design: Ensures the application works correctly on different screen sizes.
- Theme Switching: Verifies that the dark/light mode toggle works correctly.
Some tests are currently skipped due to limitations in the test environment:
- Tests that require navigating to list detail pages
- Tests for reminders functionality
This project uses GitHub Actions for continuous integration. Tests are automatically run when:
- Code is pushed to the
main
branch - A pull request is created targeting the
main
branch
The workflow sets up a test environment with Node.js, PostgreSQL, and Redis to ensure all tests pass in an environment similar to production.
Additionally, end-to-end tests are run after successful deployment to verify the application is working correctly in production.
To see the status of the latest test runs, check the "Actions" tab in the GitHub repository.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
This project is deployed at https://todoist.cloud using Vercel's platform.
Check out our Next.js deployment documentation for more details.
Contributions are welcome! Here's how you can contribute to this project:
Please be respectful and inclusive when contributing to this project. Harassment or abusive behavior will not be tolerated.
- Fork the repository - Create your own copy of the project to work on.
- Create a branch - Make your changes in a new branch (
git checkout -b feature/amazing-feature
). - Make your changes - Implement your feature or bug fix.
- Run tests - Ensure all tests pass with
npm test
. - Commit your changes - Use clear commit messages that explain what you've done.
- Push to your branch - Upload your changes to your forked repository.
- Create a Pull Request - Submit a PR to the main repository for review.
- Ensure your code passes all tests
- Update documentation as needed
- Include screenshots or examples if relevant
- Keep PRs focused on a single feature or fix
Follow the "Getting Started" and "Local Development with Docker Compose" sections above to set up your development environment.
This project is licensed under the MIT License - see the LICENSE file for details.
This project uses GitHub Actions for continuous integration and deployment to Vercel. The workflow is configured to:
- Run all tests when code is pushed to the
main
branch or when a pull request is created - Automatically deploy to Vercel when tests pass on the
main
branch
The CI/CD pipeline consists of two main jobs:
- Test: Runs all tests to ensure code quality
- Deploy: Deploys the application to Vercel if all tests pass (only on the
main
branch)
To set up automatic deployment to Vercel, you need to add the following secrets to your GitHub repository:
VERCEL_TOKEN
: Your Vercel API tokenVERCEL_ORG_ID
: Your Vercel organization IDVERCEL_PROJECT_ID
: Your Vercel project ID
You can find these values in your Vercel project settings.
The deployment configuration is defined in the following files:
.github/workflows/ci-cd.yml
: The main CI/CD workflow using Vercel CLI.github/workflows/vercel-deploy.yml
: An alternative workflow using the official Vercel GitHub Actionvercel.json
: Configuration for Vercel deployment
You can choose which workflow to use based on your preferences. The ci-cd.yml
workflow provides more control over the deployment process, while the vercel-deploy.yml
workflow is simpler and uses the official Vercel GitHub Action.
The application is configured to work with Prisma in both development and production environments. The following configurations have been made:
-
Binary Targets: The Prisma schema includes binary targets for both local development (
native
) and RHEL-based production environments (rhel-openssl-3.0.x
). -
Build Process: The build process includes Prisma client generation and database migrations:
prisma generate && prisma migrate deploy && next build
-
CI/CD Pipeline: The GitHub Actions workflow is configured to:
- Generate the Prisma client during testing
- Run database migrations during deployment
- Pass the necessary environment variables to the build process
-
Environment Variables: Make sure to set the following environment variables in your Vercel project:
DATABASE_URL
: The connection string for your PostgreSQL databaseREDIS_URL
: The connection string for your Redis instance
-
GitHub Secrets: The following secrets should be set in your GitHub repository:
VERCEL_TOKEN
: Your Vercel API tokenVERCEL_ORG_ID
: Your Vercel organization IDVERCEL_PROJECT_ID
: Your Vercel project IDDATABASE_URL
: The connection string for your PostgreSQL databaseREDIS_URL
: The connection string for your Redis instance