Skip to content

Supporting repository for my talk about debugging with git bisect

License

Notifications You must be signed in to change notification settings

bdubaut/git-bisect-talk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Debugging software with git bisect

Simple Phoenix application to demonstrate how to use git bisect to debug software. You can find the talk here

Getting started

Minimal requirements

  • elixir 1.13.1
  • erlang 24.2

Running the app

$> mix deps.get

To start the server: start Phoenix endpoint with mix phx.server or inside IEx with iex -S mix phx.server

Now you can visit localhost:4000 from your browser.

To run the tests:

$> mix deps.get