Rewrite rust #38

Merged
kjuulh merged 24 commits from experiment/local into v0.3 2022-11-27 12:21:36 +01:00
5 changed files with 2 additions and 27 deletions
Showing only changes of commit 5fc7d7caf9 - Show all commits

@ -1 +0,0 @@
Subproject commit 08a6b4dda7513b2688733bfe27748952db5471ce

View File

@ -1,7 +0,0 @@
FROM golang
COPY . .
RUN go build cmd/main.go
CMD [ "main" ]

View File

@ -1,2 +0,0 @@
.cuddle/
main/

View File

@ -1,17 +0,0 @@
version: '3.7'
services:
{{ service }}:
image: {{ image }}
ports:
- {{ port }}
env_file: ".env"
restart: always
depends_on:
- db
db:
image: postgres:13.5
restart: always
env_file: ".env"
volumes:
- ./data/postgres:/var/lib/postgresql/data

2
.gitignore vendored
View File

@ -1 +1,3 @@
/target
.cuddle/
target/