Loading repository data…
Loading repository data…
KonyD / repository
A fullstack todo app built using Go, React and MongoDB
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
A simple full-stack Todo application built with:
Install dependencies:
go mod tidy
Set up environment variables:
.env file in the root directory:
MONGODB_URI=your_mongodb_connection_string
PORT=3000
Run the server:
go run main.go
Or, for automatic reload on code changes, you can use Air:
# Install Air if you don't have it
go install github.com/air-verse/air@latest
# Then run
air
Install dependencies:
cd client
npm install
Start the React app:
npm run dev
Visit: http://localhost:5173