Skip to content
/ web Public

Serves a web frontend for entice. Use this to access the worlds.

License

Notifications You must be signed in to change notification settings

entice/web

Folders and files

NameName
Last commit message
Last commit date

Latest commit

67e1d41 · Jul 26, 2016
May 2, 2016
Jul 25, 2016
May 8, 2016
May 6, 2016
May 6, 2016
Feb 11, 2016
Jul 25, 2016
Jan 17, 2015
Jan 9, 2015
Oct 4, 2015
Feb 11, 2016
Feb 13, 2016
May 8, 2016
Jul 25, 2016
Jul 25, 2016

Repository files navigation

Build Status

Entice.Web

Serves a web frontend for entice. Use this to access the worlds.

Needs:

  • Erlang version: 17.5
  • Elixir version: 1.0.4

To config:

  • find the config files in ./config
  • in local dev environment edit the ./config/prod.exs config file
  • in production environment (see MIX_ENV) use DATABASE_URL to set the PostgreSQL url:
    • get your url, check postgres info on how to do that it should look somewhat like this: postgres://username:password@example.com/database_name
    • replace the postgres with ecto like this: ecto://username:password@example.com/database_name

To start:

  1. Install dependencies with mix deps.get
  2. Create the database with mix ecto.migrate
  3. Seed the database with mix run priv/repo/seeds.exs
  4. Start server with mix phoenix.server