https://github.com/jitinder/crm-backend-go
https://github.com/jitinder/crm-backend-go
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jitinder/crm-backend-go
- Owner: jitinder
- Created: 2022-11-14T00:53:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-15T10:30:06.000Z (over 3 years ago)
- Last Synced: 2025-03-23T06:29:06.924Z (about 1 year ago)
- Language: Go
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Udacity Golang - CRM Back-end
This repository contains the source code for the CRM Back-end project for the Golang course in Udacity.
## Project features
The project represents the backend of a customer relationship management (CRM) web application. The server supports the following functionalities:
- Getting a list of all customers
- Getting data for a single customer
- Adding a customer
- Updating a customer's information
- Removing a customer
## Installation Instructions
To install, clone the repository and run `go get github.com/gorilla/mux` to install the gorilla/mux package.
To run the server, simple run `go run main.go` from the command line
The server listens to port 3000 of your localhost
Test the server by running `go test` from the command line