Skip to content

Commit 2f93205

Browse files
docs: remove swagger annotations (#682)
1 parent 1cec86b commit 2f93205

File tree

14 files changed

+8
-1837
lines changed

14 files changed

+8
-1837
lines changed

.env.example

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
DISABLE_SWAGGER_HTTP_HANDLER=true
21
GIN_MODE=release
32
# DB_URL=postgres://postgresadmin:admin123@localhost:5432/rpsdb
43
# OAUTH CONFIGURATION

Makefile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,9 @@ compose-down: ### Down docker compose
2424
docker compose down --remove-orphans
2525
.PHONY: compose-down
2626

27-
swag-v1: ### swag init
28-
swag init -g internal/controller/http/v1/router.go
29-
.PHONY: swag-v1
30-
3127
run: ### run app
3228
go mod tidy && go mod download && \
33-
DISABLE_SWAGGER_HTTP_HANDLER='' GIN_MODE=debug CGO_ENABLED=0 go run ./cmd/app
29+
GIN_MODE=debug CGO_ENABLED=0 go run ./cmd/app
3430
.PHONY: run
3531

3632
docker-rm-volume: ### remove docker volume

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ cp .env.example .env
9494
Edit `.env` as needed. For local dev, set:
9595

9696
```sh
97-
DISABLE_SWAGGER_HTTP_HANDLER=true
9897
GIN_MODE=debug
9998
# DB_URL=postgres://postgresadmin:admin123@localhost:5432/rpsdb # uncomment for Postgres
10099
```

0 commit comments

Comments
 (0)