Auctions web app built with Elixir framework Phoenix
⚠️ WIP
Greenfield web app that is similar to the basic functionality of eBay.
Clone xray/Renaissance, and then
install its dependencies.
$ cd PROJECT_ROOT
$ mix deps.getCreate and migrate the database.
$ mix ecto.setupFinally, install Node.js dependencies.
$ cd assets && npm install && cd ..Start Phoenix endpoint.
$ mix phx.serverNow you can visit localhost:4000 from your browser.
$ cd PROJECT_ROOT
$ mix testUse of Phoenix LiveView in this project was guided by, and is heavily based on,
- A LiveView Dashboard · Kabisa (Oostdijk, Apr 2019)
- chrismccord/phoenix_live_view_example
- This file was inspired by PurpleBooth/README-Template.md.