https://github.com/markolson/fly-wordguess
Word Guessing Game deployed to fly.io
https://github.com/markolson/fly-wordguess
Last synced: over 1 year ago
JSON representation
Word Guessing Game deployed to fly.io
- Host: GitHub
- URL: https://github.com/markolson/fly-wordguess
- Owner: markolson
- Created: 2021-02-21T16:10:41.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-02-21T16:21:04.000Z (over 5 years ago)
- Last Synced: 2025-01-13T00:24:06.201Z (over 1 year ago)
- Language: Elixir
- Size: 1.31 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
I should have taken better notes!
For fly...
* I didn't see any good way to stand up multiple fly instances outside of just having separate files, so there's `fly.toml` for the elixir app and `flies/postgres/fly.toml` for the postgres server
* Have to set private_network = true in both fly.toml files
* Fly is IPV6 interally, so I had to set inet6 on every sort of connection
* I don't have docker installed locally and just hardcoded everything in the dockerfile. yolo.
Locally..
```
mix deps.get
npm install --prefix assets
mix ecto.setup
mix phx.server
```