A modern web application for managing addresses with Excel export functionality.
First, install dependencies:
npm install
Then, run the development server:
npm run dev
Open http://localhost:3000 with your browser to see the result.
GET /api/addresses - Retrieve all addressesPOST /api/addresses - Add a new addressGET /api/addresses/download - Download addresses as Excel fileBuild the project for production:
npm run build
npm start
This project is set up to be pushed to a GitHub repository. Initialize git and push:
git init
git add .
git commit -m "Initial commit"
git remote add origin <your-repo-url>
git push -u origin main