Skip to content

제1회 파트연합 스프린트 챌린지 1조 BE

Notifications You must be signed in to change notification settings

GDG-on-Campus-KHU/SC1_BE

Repository files navigation

team1_BE

| 제1회 스프린트 챌린지 1조 - BackEnd

Project Structure -- updating!

.
├── (.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

How to RUN the Program (with 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!

How to RUN the Program (without Go)

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

About

제1회 파트연합 스프린트 챌린지 1조 BE

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages