-
Install docker and docker-compose
-
Run
make run
-
Install Elixir
-
Install PostgreSQL:
sudo apt install postgresql postgresql-client
-
Create postgres user:
sudo -u postgres psql
CREATE USER "psql-username" WITH ENCRYPTED PASSWORD 'psql-password'; ALTER USER "psql-username" CREATEDB;
-
Run
make dev
Now you can visit localhost:4000/graphiql
from your browser.
Ready to run in production? Please check our deployment guides.
- 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