Adding mailgun API jazz
This commit is contained in:
parent
663e5ae7cd
commit
867e914bf9
2 changed files with 6 additions and 2 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -24,5 +24,4 @@ _testmain.go
|
|||
*.prof
|
||||
|
||||
# Application specific
|
||||
gin-bin
|
||||
|
||||
.env
|
||||
|
|
5
serve.sh
5
serve.sh
|
@ -1,6 +1,11 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
fi
|
||||
|
||||
SECRET=secret \
|
||||
PGDATABASE=bactdbtest \
|
||||
DOMAINS="http://localhost:4200" \
|
||||
ACCOUNT_KEYS=$ACCOUNT_KEYS \
|
||||
bash -c 'go run *.go serve'
|
||||
|
|
Reference in a new issue