To generate swagger documentation
$ cd back_end
$ swag fmt
$ swag init --parseDependency --parseInternal
Read documentation at doc:
To do database migration
First change Database Setting in conf/app.env accordingly and create necessary database
$ cd back_end
$ go run main.go - migrate
default account email => minbala33@gmail.com password => minbala33
To run the backend application
$ cd back_end
$ go run main.go - serve
to run test cases
$ cd back_end
$ go test ./...
To run front end
$ cd front_end
$ npm install
$ npm run dev
```# admin-panel