Skip to content

Commit 5f9c907

Browse files
authored
Merge pull request #5 from cpp-cyber/development
New proclone backend
2 parents 98406cb + c078f3a commit 5f9c907

52 files changed

Lines changed: 5623 additions & 2978 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env

Lines changed: 0 additions & 12 deletions
This file was deleted.

.gitignore

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# If you prefer the allow list template instead of the deny list, see community template:
2+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
3+
#
4+
# Binaries for programs and plugins
5+
*.exe
6+
*.exe~
7+
*.dll
8+
*.so
9+
*.dylib
10+
11+
# Test binary, built with `go test -c`
12+
*.test
13+
14+
# Code coverage profiles and other test artifacts
15+
*.out
16+
coverage.*
17+
*.coverprofile
18+
profile.cov
19+
20+
# Dependency directories (remove the comment below to include it)
21+
# vendor/
22+
23+
# Go workspace file
24+
go.work
25+
go.work.sum
26+
27+
# env file
28+
*.env
29+
30+
# Uploaded template images
31+
uploads/
32+
33+
# Editor/IDE
34+
# .idea/
35+
# .vscode/

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM golang:1.24 as builder
1+
FROM golang:1.24 AS builder
22

33
WORKDIR /app
44
COPY . .
55
RUN go mod download
6-
RUN go build -o server .
6+
RUN go build -o server ./cmd/api
77

88
FROM debian:bookworm-slim
99
WORKDIR /app

auth/auth.go

Lines changed: 0 additions & 144 deletions
This file was deleted.

auth/ldap.go

Lines changed: 0 additions & 185 deletions
This file was deleted.

0 commit comments

Comments
 (0)