/postya

My personal feed reader written in Elixir

Primary LanguageElixir

Postya

To build and deploy

Change the version in mix.exs.

  • make build This app deploys from GitHub master branch via CircleCI.

To build and deploy from local machine

Change the version in mix.exs.

  • make build followed by:
  • make deploy

To get a remote console on the production system

SSH to it and run: ~/apps/phx/releases/<releasen number>/phx.sh remote_console

For verbosity

Use -V flag.

To see logs,

tail -f apps/phx/var/log/erlang.log.1 or, if started by systemd, see /var/log/syslog

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

Now you can visit localhost:4000 from your browser.

Ready to run in production? Please check our deployment guides.

Learn more