Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ testdata/

# Build artifacts
build/
dhamps-vdb
embapi

# Go workspace
go.work
Expand Down
6 changes: 3 additions & 3 deletions .env.docker.template
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# ==========================================
# dhamps-vdb Docker Environment Configuration
# embapi Docker Environment Configuration
# ==========================================
#
# This file contains environment variables for running dhamps-vdb with Docker.
# This file contains environment variables for running embapi with Docker.
# Copy this file to .env and update the values as needed.
#
# IMPORTANT: Never commit the actual .env file to version control!
Expand All @@ -21,7 +21,7 @@ SERVICE_DBHOST=postgres
SERVICE_DBPORT=5432
SERVICE_DBUSER=postgres
SERVICE_DBPASSWORD=your_secure_password_here
SERVICE_DBNAME=dhamps_vdb
SERVICE_DBNAME=embapi

# Port Mapping
# ------------
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: go mod download

- name: Verify build
run: go build -o build/dhamps-vdb main.go
run: go build -o build/embapi main.go

- name: Run tests
run: go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: go mod download

- name: Verify build
run: go build -o build/dhamps-vdb main.go
run: go build -o build/embapi main.go

- name: Run tests
run: go test -v ./...
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
*.so
*.dylib
build/*
embapi

# Test binary, built with `go test -c`
*.test
Expand Down
Loading