diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ -# Golang Backend API using Echo for FSI(File System Integrity) Application -Developing a simple Golang backend API using the [Echo framework](https://github.com/labstack/echo). This API stores IDs and their corresponding hashes in a SQL server and provides functionality to verify if a given hash matches the stored hash for a specific ID. All the communication between the Application and API will secured using TLS encryption(HTTPS). +# Golang Backend API for FIC (File Integrity Checker) Application +Developing a simple Golang backend API with the [Echo framework](https://github.com/labstack/echo) for FIC(File Integrity Checker) application. This API stores IDs and their corresponding hashes in a SQL server and provides functionality to verify if a given hash matches the stored hash for a specific ID. All the communication between the Application and API is secured using TLS encryption(HTTPS). Thereby providing both confidentiality and integrity service that aligns with the CIA (Confidentiality, Integrity, Availability) triad for data security. ## Getting Started @@ -16,8 +16,8 @@ To get started with this project, follow these steps: 1. Clone this repository to your local machine: ```bash - git clone https://github.com/justsaumit/go-fsi-api.git - cd go-fsi-api + git clone https://github.com/justsaumit/go-fic-api.git + cd go-fic-api ``` 2. Initialize and install project dependencies using Go modules: @@ -31,7 +31,7 @@ To get started with this project, follow these steps: 4. Run the server: ```bash - go run main.go + go run server.go ``` ### Usage |