https://github.com/treejamie/raffley
The first of two artefacts created I work through the Pragamatic Studio course - "Full Stack Phoenix". This one is guided.
https://github.com/treejamie/raffley
elixir phoenix pragmaticstudio
Last synced: about 1 year ago
JSON representation
The first of two artefacts created I work through the Pragamatic Studio course - "Full Stack Phoenix". This one is guided.
- Host: GitHub
- URL: https://github.com/treejamie/raffley
- Owner: treejamie
- Created: 2025-04-16T16:24:05.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-21T15:26:23.000Z (about 1 year ago)
- Last Synced: 2025-04-22T12:16:41.221Z (about 1 year ago)
- Topics: elixir, phoenix, pragmaticstudio
- Language: Elixir
- Homepage:
- Size: 2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 52
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Raffley
## 🗃️ Database
The local database is being ran with a pod using podman.
```bash
podman run --rm -p 5432:5432 -e POSTGRES_PASSWORD=mysecretpassword -e POSTGRES_DB=raffley_dev -v $HOME/pods/raffley:/var/lib/postgresql/data postgres -d postgres
```
## 🌐 Web Server
Start interactive server
```
iex -S mix phx.server
```
Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.