diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ac8c83c --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.code +.vscode +.idea + diff --git a/Dockerfile b/Dockerfile index dca083f..78a871b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,4 +8,4 @@ RUN CGO_ENABLED=0 GOOS=linux go build -o app cmd/server/main.go FROM alpine:latest AS production COPY --from=builder /app . -CMD ["./app"] \ No newline at end of file +CMD ["./app"] diff --git a/README.md b/README.md index a86a8f2..3ca34a8 100644 --- a/README.md +++ b/README.md @@ -28,4 +28,3 @@ Steps to authenticate: - Go to the `docker-compose.yml` file and change or copy the value that is set into the `TOKEN_SECRET` env variable - Go to http://jwtbuilder.jamiekurtz.com/ scroll down to the bottom put the key you set into the `Key` input and click on `Create Signed JWT` - Copy the JWT token and use it to authenticate with the Authorization header (example `Authorization: Bearer TOKEN`) - diff --git a/app b/app deleted file mode 100755 index 8241526..0000000 Binary files a/app and /dev/null differ diff --git a/cmd/server/main b/cmd/server/main deleted file mode 100755 index d21e9fc..0000000 Binary files a/cmd/server/main and /dev/null differ diff --git a/docker-compose.yml b/docker-compose.yml index dfb1376..1cab5a2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -36,4 +36,4 @@ volumes: database_postgres: networks: fullstack: - driver: bridge \ No newline at end of file + driver: bridge