A Carbon Five-flavored convenience skeleton project for Phoenix.
- Phoenix
- Postgrex
- Slim
- Wallaby
- ExMachina
- Yarn
- Sass
- Bootstrap
- additional
acceptanceenvironment - CI testing via CircleCI
- .iex.exs for REPL aliases & imports
- ready for deployment to Heroku Pipelines in
acceptanceandprodenvironments.
It's strongly recommended you don't clone this repo, and instead zap your project using Razor. The zapper will handle all of the following steps programmatically.
If you can't use Razor to install for some reason, you can start by cloning this repo. Next, you'll perform global replacements for these with your app name:
SevenStoriesClubseven_stories_clubsevenstoriesclubSeven Stories Club
Also rename the following directories & files:
/lib/seven_stories_club/web/static/css/_seven_stories_club.scss/web/static/js/seven_stories_club.js
Now you can finish your setup & verify things are working:
mix deps.getmix ecto.setupcd assets && yarn installcd assets && brunch buildmix test
Each environment is responsible for setting the SECRET_KEY_BASE. With the exception of the test environment, this value is derived from a system environment variable.
To set environment variables locally for the dev environment, you can create a .env file & run the server with a tool that reads .env. I recommend heroku local to mirror production more closely, or foreman.
MIX_ENV=dev
SECRET_KEY_BASE="xxxxxx"
SECRET_KEY_BASE can be generated with the task mix phx.gen.secret.
As a convenience, a weak SECRET_KEY_BASE is hard-coded in the test environment. You can easily change this to read an env var a la the other environments instead.
- Run with something that works with
.envfiles, i.e.foremanorheroku local - OR
source .envandmix phx.server - visit the app in a browser (default is
http://localhost:4000, orhttp://127.0.0.1:4000in some versions of Chrome)
Now you're ready to remove demo content, which is easy to spot from the landing page.
- phantomjs is required for acceptance testing with Wallaby, i.e.
yarn global add phantomjs. Lean more about wallaby
- If you use asdf, you'll be set up with the correct versions of
nodeandelixironce they're installed. Otherwise, have a look at.tool-versionsto see the current versions.
This app is pre-configured for easy deployment to Heroku w/ pipelines using CircleCI. CI is only used to run tests; your pipelines should be configured to auto-deploy branches after passing CI tests.
Convention is to auto-deploy master branch to acceptance, and production branch to production.
- Create Heroku apps for
acceptanceandproduction - Provision Heroku Postgres DB resources
- Add buildpacks to Heroku apps
heroku buildpacks:add https://github.com/HashNuke/heroku-buildpack-elixir.git --app your-heroku-app-nameheroku buildpacks:add https://github.com/gjaldon/heroku-buildpack-phoenix-static.git --app your-heroku-app-name
- Add environment variables to Heroku
SECRET_KEY_BASE, which can be generated with the taskmix phx.gen.secretHOSTNAME, should be the hostname of the deployed site (e.g.sevenstoriesclub-production.herokuapp.com)MIX_ENVshould beprodPOOL_SIZEshould be set 2 units below the max db connections allowed by the Heroku instance. This allows mix tasks to be run with 2 connections.DATABASE_URLshould have been filled automatically by provisioning heroku postgres.
- Migrations are run automatically using Heroku's release phase.
- Configure Elixir, Erlang and Node versions via the
elixir_buildpack.configandphoenix_static_buildpack.configfiles. See the corresponding buildpack project pages for more configuration variables.
- You will see warnings from several dependencies the first time they're compiled. This is because many of them have not yet been upgraded for elixir 1.4; these can be safely ignored.
- There's a decent chance you'll eventually want a production environment with more control & power. Heroku is currently the simplest way to get up & running for prototyping, and may even suit your app just fine long term.
- Razor should be used for convenience, not to avoid learning more about Phoenix and Elixir. Please take the time to learn about the opinions provided by Razor & how they are implemented.
- Official website: http://www.phoenixframework.org/
- Guides: http://phoenixframework.org/docs/overview
- Docs: https://hexdocs.pm/phoenix
- Mailing list: http://groups.google.com/group/phoenix-talk
- Source: https://github.com/phoenixframework/phoenix
