A minimalist habit tracking app built with NestJS, MongoDB, and JWT, designed to help users build and maintain daily habits with a clean, intuitive interface.
- 🌓 Dark/Light mode support
- 📱 Clean, modern UI with smooth animations
- 📊 5-day habit tracking view
- 🔥 Streak counting
- 💾 Persistent storage using AsyncStorage
- 📲 Haptic feedback for interactions
- 🔍 Detailed habit view
- ➕ Easy habit creation with modal interface
- Node.js (v20 or later)
- pnpm
- Clone the repository:
git clone https://github.com/fberrez/minihabits.git
- Install dependencies:
cd minihabits
pnpm install
- Create a
.env
file in the root of the project with the following variables:
CORS_ORIGIN="http://localhost:5173"
FRONTEND_URL="http://localhost:5173"
JWT_EXPIRATION_TIME="7d"
JWT_REFRESH_EXPIRATION_TIME="30d"
JWT_REFRESH_SECRET="refresh_secret"
JWT_SECRET="secret"
MONGODB_URI="mongodb://admin:password@localhost:27017/minihabits"
NODE_ENV="development"
PORT="3000"
RESEND_API_KEY="re_11234"
RESEND_FROM="Minihabits <youraddres@host.co>"
RESEND_AUDIENCE_ID="your-audience-id"
- Start the development server:
pnpm run start:dev
This project is configured for automated deployment using GitHub Actions, Docker, and Traefik.
- Hosting: VPS - OVH
- Containerization: Docker
- Reverse Proxy: Traefik
- SSL: Let's Encrypt via Traefik
- Push changes to the
main
branch - GitHub Actions workflow builds a Docker image and pushes it to GitHub Container Registry
- The workflow deploys the image to a VPS using SSH
- Traefik handles routing and SSL certificates
- Docker and Docker Compose
- Traefik v3 configured as a reverse proxy
- External
web
network for Traefik communication
This project is licensed under the MIT License - see the LICENSE file for details.