This application is internally used at SalesLoft for OKR tracking. It has been open sourced (as a snapshot with no git history) in order to write about some different patterns I explored while writing it.
I don't expect the runnable project to be useful to you. The code / tests may bring value as a reference of different patterns.
To start your Phoenix server:
mix deps.get
mix ecto.create && mix ecto.migrate
cd assets && npm install && cd ..
mix phx.server
Now you can visit http://localhost:6006
from your browser.
You can seed some starter data. If you want to use an Okta login, you'll need to set it up properly. It's recommended to fake the login locally for this reason.
mix ecto.reset && mix run priv/seed.exs
You can fake login (in dev env only), by hitting the following URL:
http://localhost:6006/force_login?user_name=steve.bussey%[email protected]
You can change the user_name parameter to anything in the priv/seed.exs
file.