Go to file
Borna Rajković cefc5314f2 Added support for stripe 2023-07-26 09:51:29 +02:00
db Added support for stripe 2023-07-26 09:51:29 +02:00
migration Initial commit 2023-07-06 11:29:06 +00:00
state Added support for stripe 2023-07-26 09:51:29 +02:00
stripe Added support for stripe 2023-07-26 09:51:29 +02:00
templates Added support for stripe 2023-07-26 09:51:29 +02:00
wspay Added support for stripe 2023-07-26 09:51:29 +02:00
.gitignore Implemented gateway interactions 2023-07-10 10:10:13 +02:00
README.md Implemented gateway interactions 2023-07-10 10:10:13 +02:00
db.go Initial commit 2023-07-06 11:29:06 +00:00
docker-compose-deploy.yml Added support for stripe 2023-07-26 09:51:29 +02:00
docker-compose.yml Implemented gateway interactions 2023-07-10 10:10:13 +02:00
dockerfile Implemented gateway interactions 2023-07-10 10:10:13 +02:00
go.mod Added support for stripe 2023-07-26 09:51:29 +02:00
go.sum Added support for stripe 2023-07-26 09:51:29 +02:00
main.go Added support for stripe 2023-07-26 09:51:29 +02:00
makefile Added support for stripe 2023-07-26 09:51:29 +02:00
render.go Initial commit 2023-07-06 11:29:06 +00:00

README.md

go-web-app-template

Basic template for creating go applications

Includes:

  • dotenv
  • pq
  • sqlx
  • gin
  • google.uuid

To start using make sure to setup either environment variables listed below, or create .env file and copy variables below

PSQL_HOST=localhost
PSQL_PORT=5432
PSQL_USER=payment-poc
PSQL_PASSWORD=paymentPassword
PSQL_DB=payment-poc

Also, database is required for template to start, so you can start it with docker compose up -d