Skip to content

Kaitosss/taskify-react-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

TaskManager (React + Go)

TaskManager is a full-stack task management application built with React (Vite + TypeScript) on the frontend and Go (Golang) on the backend.
The project follows a clean separation between client and server, making it easy to scale and maintain.

📁 Project Structure

taskify-react-go/
├── client/                    # Frontend (React + Vite)
│   ├── dist/                  # Production build output
│   ├── node_modules/
│   ├── public/
│   ├── src/                   # React source code
│   ├── index.html
│   ├── package.json
│   ├── vite.config.ts
│   ├── tsconfig.json
│   ├── eslint.config.js
│   └── README.md
│
├── server/                    # Backend (Go)
│   ├── controller/            # Request handlers
│   ├── database/              # Database connection
│   ├── model/                 # Data models
│   ├── router/                # API routes
│   ├── tmp/                   # Temporary files
│   ├── static/                # Static assets (if any)
│   ├── build/                 # Build output
│   ├── .env                   # Environment variables
│   ├── .env.example           # Environment template
│   ├── go.mod
│   ├── go.sum
│   └── server.go              # Main entry point
│
├── .gitignore
└── README.md

🚀 Features

  • Create, update, delete, and view tasks
  • RESTful API built with Go
  • Frontend built with React + TypeScript (Vite)
  • Environment-based configuration

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors