Auctions web app built with Elixir framework Phoenix
⚠️ WIP
Greenfield web app that is similar to the basic functionality of eBay.
Clone rstein66/ebay-clone
, and then
install its dependencies.
$ cd PROJECT_ROOT
$ mix deps.get
Create and migrate the database.
$ mix ecto.setup
Finally, install Node.js dependencies.
$ cd assets && npm install && cd ..
Start Phoenix endpoint.
$ mix phx.server
Now you can visit localhost:4000
from your browser.
$ cd PROJECT_ROOT
$ mix test
Use 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.