https://github.com/abhishekkr/sample_phoenix_server
sample phoenix server to try out Phoenix style elixir
https://github.com/abhishekkr/sample_phoenix_server
elixir learning-by-doing phoenix sample
Last synced: 20 days ago
JSON representation
sample phoenix server to try out Phoenix style elixir
- Host: GitHub
- URL: https://github.com/abhishekkr/sample_phoenix_server
- Owner: abhishekkr
- License: mit
- Created: 2019-08-01T17:14:38.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2026-02-07T12:27:53.000Z (5 months ago)
- Last Synced: 2026-04-06T11:41:54.368Z (3 months ago)
- Topics: elixir, learning-by-doing, phoenix, sample
- Language: Elixir
- Size: 49.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sample Phoenix Server
> is here to try out phoenix style elixir
### Currently
* provides a chatroom `Scuttlebutt` using channels without persistence
---
To start your Phoenix server:
* Install dependencies with `mix deps.get`
* Create and migrate your database with `mix ecto.setup`
* Install Node.js dependencies with `cd assets && npm install`
* Start Phoenix endpoint with `mix phx.server`
* `./start-pgsql` to init docker with postgres for dev mode here
Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.
Ready to run in production? Please [check our deployment guides](https://hexdocs.pm/phoenix/deployment.html).
## Learn more
* Official website: http://www.phoenixframework.org/
* Guides: https://hexdocs.pm/phoenix/overview.html
* Docs: https://hexdocs.pm/phoenix
* Mailing list: http://groups.google.com/group/phoenix-talk
* Source: https://github.com/phoenixframework/phoenix
---