A professional, Linear-inspired task management platform with real-time analytics, intelligent insights, and a stunning dark UI.
| Feature | Description |
|---|---|
| Project Management | Create unlimited projects with custom templates, track progress, and manage team workspaces |
| Smart Task System | Kanban boards, list views, drag-and-drop, priority management, and real-time status tracking |
| Real-time Analytics | Live metrics, completion rates, performance trends, and productivity insights |
| Team Insights | AI-powered recommendations for workflow optimization and bottleneck detection |
| File Attachments | AWS S3-powered document management with secure presigned URL downloads |
| Authentication | Secure JWT-based auth with bcrypt password hashing and automatic session management |
| Beautiful UI | Linear-inspired ultra-dark theme with smooth animations and micro-interactions |
- Blazing Fast - Optimized rendering with Next.js 16 and React 19
- Dark Mode First - Professional ultra-dark theme with code-inspired accents
- Fully Responsive - Perfect on desktop, tablet, and mobile devices
- Smooth Animations - Delightful micro-interactions throughout the app
- Keyboard Shortcuts - Power user features for maximum productivity
- Smart Loading States - Never lose context with intelligent state management
|
|
- Container: Docker + Docker Compose
- IaC: Terraform (AWS ready)
- CI/CD: GitHub Actions
- Deployment: AWS ECS/Fargate, RDS, S3, ALB
TaskFlow/
│
├── backend/ # Express API Server
│ ├── src/
│ │ ├── routes/ # API endpoints (auth, tasks, projects, workspaces)
│ │ ├── middleware/ # Auth middleware, error handling
│ │ ├── controllers/ # Business logic
│ │ ├── config/ # Prisma, S3, environment config
│ │ └── utils/ # JWT helpers, validators
│ ├── prisma/ # Database schema & migrations
│ └── package.json
│
├── frontend/ # Next.js Application
│ ├── app/ # App router pages
│ │ ├── page.tsx # Landing page
│ │ ├── login/ # Authentication
│ │ ├── signup/ # Registration
│ │ └── dashboard/ # Main application
│ ├── components/ # Reusable UI components
│ │ ├── ProjectCard.tsx
│ │ ├── AnalyticsCard.tsx
│ │ ├── TeamInsights.tsx
│ │ └── QuickActions.tsx
│ ├── lib/ # API client, hooks, utilities
│ └── globals.css # Design tokens & styling
│
├── infra/ # Infrastructure as Code
│ └── terraform/ # AWS deployment config
│
└── README.md
Before you begin, ensure you have the following installed:
- Node.js 18.x or higher (Download)
- PostgreSQL 16.x (Download)
- npm or yarn
- AWS Account (for S3 file storage)
git clone https://github.com/ticsture/cloud-saas-app.git
cd cloud-saas-appcd backend
npm installConfigure Environment Variables:
Create a .env file in the backend directory:
# Database
DATABASE_URL="postgresql://app_user:supersecretpassword@localhost:5432/cloud_saas_db?schema=public"
# JWT Secret (generate a secure random string)
JWT_SECRET="your-super-secret-jwt-key-change-this-in-production"
# AWS S3 Configuration
AWS_REGION="us-east-1"
AWS_ACCESS_KEY_ID="your-aws-access-key"
AWS_SECRET_ACCESS_KEY="your-aws-secret-key"
S3_BUCKET_NAME="taskflow-attachments"
# Server
PORT=4000Start PostgreSQL with Docker:
docker compose -f docker-compose.db.yml up -dRun Database Migrations:
npx prisma migrate dev
npx prisma generateStart the Backend Server:
npm run devBackend will run on http://localhost:4000
Open a new terminal:
cd frontend
npm installConfigure Environment Variables:
Create a .env.local file in the frontend directory:
NEXT_PUBLIC_API_URL=http://localhost:4000Start the Frontend Server:
npm run devFrontend will run on http://localhost:3000
- Open your browser and navigate to
http://localhost:3000 - Click Sign up to create a new account
- After registration, you'll be redirected to login
- Login and start creating projects and tasks!
This project is licensed under the MIT License - see the LICENSE file for details.
Ticsture
- GitHub: @ticsture
- Repository: cloud-saas-app