From 4d1048bc61a78fc9524957c19e7cb5aadbde50b6 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Fri, 2 Dec 2022 18:26:29 +0100 Subject: [PATCH] example env file --- .env.example | 3 +++ .gitignore | 23 +++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 .env.example create mode 100644 .gitignore diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..2a32a5d --- /dev/null +++ b/.env.example @@ -0,0 +1,3 @@ +PORT=8000 +SEND_GRID_API_ENDPOINT= +SEND_GRID_API_KEY= diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a546697 --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +# Editors +/.idea/ +*.vim + +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib +main + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Dependency directories (comment below to include vendor) +vendor/ + +# Env +.env