Application for our financial conscience caravan!
If you want to deploy a quick test environment, you can use this heroku deploy button here:
It will ask all the environment variables needed! Be sure to keep app.json up to date, than this will always work.
This project is our first Phoenix project, and we are trying not to complicate it with big libs, and we are following all the conventions we found for Phoenix.
To start your Phoenix app:
mix deps.get
mix ecto.create && mix ecto.migrate
mix run priv/repo/seeds.exs
- PS.: check this
file if you want to know a user and password to loginnpm install
mix phoenix.server
Now you can visit localhost:4000
from your browser.
It's pretty simple, but information is never too much, right?
master
is deployable, if it's in this branch, it can be in productiongit checkout -b my_feature
mix tests
is runninghub pull-request -m "My feature"
git checkout master
git branch -D my_feature
PS.: Dear reviewer, please always remember to ask for a git rebase master
before merging! To make our git log
less like:
* 482b533 Merge pull request #795 from bad/master
|\
* \ f2d88dd Merge pull request #793 from bad/master
|\ \
* \ \ 55685b1 Merge pull request #792 from bad/master
|\ \ \
* \ \ \ c2c40b0 Merge pull request #791 from bad/master
|\ \ \ \
* \ \ \ \ ac1abbc Merge pull request #790 from bad/master
...
And more like this:
* 96d7522 Merge pull request #27 from good/reports-order
|\
| * 3e89c38 Fixing joins typo
|/
* 22a834e Merge pull request #26 from good/archive-projects
|\
| * 043153b Adds users to seeds
|/
* 7fab6a6 Merge pull request #25 from good/archive-projects
...