Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ctrlmaniac/gocrm
A simple CRM backend written in Go for the Udacity Golang course
https://github.com/ctrlmaniac/gocrm
Last synced: 1 day ago
JSON representation
A simple CRM backend written in Go for the Udacity Golang course
- Host: GitHub
- URL: https://github.com/ctrlmaniac/gocrm
- Owner: ctrlmaniac
- License: mit
- Created: 2022-12-13T16:22:47.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-13T21:22:34.000Z (about 2 years ago)
- Last Synced: 2024-06-21T01:48:44.778Z (6 months ago)
- Language: Go
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CRM-Backend
a simple CRM backend written in Go for the Udacity Golang course
## RUN
To run this application you have to type into your terminal `go run main/main.go`
## BUILD
To build this application run in your terminal `go build main/main.go`
## Project directory structure explained
In this repository you will find different directories, each of them has a purpose
**controllers** holds all the business logic, for example all methods to create, get, update, delete a customer for the fake database.
**main** holds the main module of this application.
**persistance** holds the logic to access the fake-database and the initial values of the fake-database.
**static** holds all html files that are needed, in this case index.html.