| 제1회 스프린트 챌린지 1조 - BackEnd
.
├── (.env)
├── README.md
├── cmd
│ └── main.go
├── config
│ ├── authConfig.go
│ └── dbConfig.go
├── controllers
│ └── authController.go
├── go.mod
├── go.sum
├── (google_auth.json)
└── utils
├── auth.go
└── db.go
git clone https://github.com/GDG-on-Campus-KHU/team1_BE.git
cd team1_BE
go run cmd/main.go
※ Since this BackEnd program is written in Go
, language installation is REQUIRED to run the program.
※ .env
file is required to load the settings and run the program!
To run this program without installation, please execute one of the following binary files
: backend-linux
, backend-windows
, backend-macos
.
※ The binary files above are generated using the following commands:
$ GOOS=linux GOARCH=amd64 go build -o backend-linux cmd/main.go
$ GOOS=windows GOARCH=amd64 go build -o backend-windows.exe cmd/main.go
$ GOOS=darwin GOARCH=amd64 go build -o backend-macos cmd/main.go