You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Love the simplicity of the app and the simple REST API exposure
was able to get it working and getting feeds in no-time using Postman :)
A suggestion I would like to make is to add a Dockerfile, so people can run the app without needing Go/install etc
to get it working and trying it out.
Here is a sample script that works, however doesn't have Node, doesn't persist the SQLite DB, and doesn't automatically start the app when the container runs:
FROM golang
WORKDIR /go/src/app
COPY . .
RUN go get -d -v ./...
RUN go install -v ./...
EXPOSE 8080/tcp
# CMD ["go run arss --client client/public --headless"]
Thank you and keep up the good work!
The text was updated successfully, but these errors were encountered:
Hi,
Love the simplicity of the app and the simple REST API exposure
was able to get it working and getting feeds in no-time using Postman :)
A suggestion I would like to make is to add a Dockerfile, so people can run the app without needing Go/install etc
to get it working and trying it out.
Here is a sample script that works, however doesn't have Node, doesn't persist the SQLite DB, and doesn't automatically start the app when the container runs:
Thank you and keep up the good work!
The text was updated successfully, but these errors were encountered: