An open API service indexing awesome lists of open source software.

https://github.com/jitinder/crm-backend-go


https://github.com/jitinder/crm-backend-go

Last synced: 2 months ago
JSON representation

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