https://github.com/albertkarapetyan/crossword
GO project using GORM, working with PostgreSQL database, Wire for DI.
https://github.com/albertkarapetyan/crossword
di go go-examples golang gorm postgresql wire
Last synced: about 1 month ago
JSON representation
GO project using GORM, working with PostgreSQL database, Wire for DI.
- Host: GitHub
- URL: https://github.com/albertkarapetyan/crossword
- Owner: AlbertKarapetyan
- Created: 2024-10-23T23:07:35.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-10-24T20:23:14.000Z (over 1 year ago)
- Last Synced: 2025-04-01T13:17:37.438Z (about 1 year ago)
- Topics: di, go, go-examples, golang, gorm, postgresql, wire
- Language: Go
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project crossword
One Paragraph of project description goes here
## Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
## MakeFile
Run build make command with tests
```bash
make all
```
Build the application
```bash
make build
```
Run the application
```bash
make run
```
Create DB container
```bash
make docker-run
```
Shutdown DB Container
```bash
make docker-down
```
DB Integrations Test:
```bash
make itest
```
Live reload the application:
```bash
make watch
```
Run the test suite:
```bash
make test
```
Clean up binary from the last build:
```bash
make clean
```