Skip to content

Latest commit

 

History

History
49 lines (29 loc) · 1.17 KB

README.md

File metadata and controls

49 lines (29 loc) · 1.17 KB

Kubeojo

Elixir setup

Kubeojo is built with Elixir and the Phoenix framework.

Phoenix setup

You need to have Postgres installed in order to develop with Phoenix.

To start your Phoenix app:

  • Install dependencies with mix deps.get
  • Create and migrate your database with mix ecto.create && mix ecto.migrate

Fill the database with Jenkins jobs data

Open a Elixir shell:

/bin/kubeojo/kubeojo$ iex -S mix

Execute the function to put data in the database:

Kubeojo.Jenkins.write_tests_failures_to_db

Starting the web framework

  • Start Phoenix endpoint with mix phoenix.server
  • Now you can visit localhost:4000 from your browser.

Learn more