Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/bangadam/backend-test-majoo


https://github.com/bangadam/backend-test-majoo

Last synced: 2 days ago
JSON representation

Awesome Lists containing this project

README

        

Backend Test Majoo


Github top language

Github language count

Repository size

License



About   |  
List API   |  
Technologies   |  
Requirements   |  
Starting   |  
License   |  
Author


## :dart: About ##

Describe your project

## :sparkles: Features ##

:heavy_check_mark: API user login;\
:heavy_check_mark: API report transaction of merchant;\
:heavy_check_mark: API report transaction of outlets;

## :rocket: Technologies ##

The following tools were used in this project:

- [Go](https://go.dev) Programming language;
- [Fiber](https://docs.gofiber.io/) For Framework;
- [Swaggo](https://github.com/swaggo/swag) For API Documentation;
- [Gorm](http://gorm.io/index.html) For ORM;
- [Ozzo Validation](https://github.com/go-ozzo/ozzo-validation) For validation request;
- [Zap Logger](https://pkg.go.dev/go.uber.org/zap) For logging;
- [Viper](https://github.com/spf13/viper) For configuration;

## :white_check_mark: Requirements ##

Before starting :checkered_flag:, you need to have [Go](https://go.dev) installed.

## :checkered_flag: Starting ##

```bash
# Clone this project
$ git clone https://github.com/bangadam/backend-test-majoo

# Access
$ cd backend-test-majoo

# Migrate Database with file `database.sql`

# Set Environment Variables with your own data, check on file config.yaml
server:
host: 127.0.0.1
port: 8080
secret_key: "secret"
mysql:
host: localhost
port: 3306
password:
user:
database:

# Install dependencies
$ go get ./...

# Run the project
$ go run cmd/api/main.go
# The server will initialize in the

# Go to API Documentation in the
```

## :memo: License ##

This project is under license from MIT. For more details, see the [LICENSE](LICENSE.md) file.

Made with :heart: by Muhammad Adam

 

Back to top