-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Documentation website? #20
Comments
Hey Jim, this was a project I put together a few years back to scratch an itch. I haven't been using it since then, but can point you in the right direction if you're interesting in getting your own instance running. Ultimately its Docker container that expects to be pointed at a Postgres instance (originally deployed on Heroku) and is configured via a few environment variables:
The set of database migration that need to be applied live here and were deployed via migrate. Let me know if you have further questions |
Thanks @jonahgeorge! I'm completely new to Go, so here's the steps I took:
I know it's likely dependent on my specific setup, but do you have any insight into what I might be doing wrong? |
Quick update: I replaced lando with a simple version: '3'
services:
db:
image: postgres
ports:
- "5433:5432"
environment:
POSTGRES_DB: "postgres"
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "" You can just run
You can open up a prompt to see the database changes using: For folks new to postgres, in the psql prompt:
|
Check out this branch- #21 I've made some small changes (and added brief instructions) which should help you |
Thanks @jonahgeorge that helped me get this going! The key things for me were:
I assume all the docker stuff (e.g. https://hub.docker.com/r/jonahgeorge/letterdrop) and scripting (e.g. |
@jonahgeorge this project looks awesome, thanks for sharing! The repo has a link to a website at https://letterdrop.jonahgeorge.com/ but it doesn't seem to exist anymore. Is there any way to get access to this site, or other documentation on using / contributing? Thanks!
The text was updated successfully, but these errors were encountered: