Trivial happy path implementation of a shopping cart client written in Javascript and Elixir. Written as a demo of the technology.
- uses Typescript
- uses React with useReducer() and useContext() hooks
- Apollo GraphQL client
- uses Absinthe GraphQL plug
- uses TailwindCSS for styling
- Install dependencies with
mix deps.get
- Create and migrate your database with
mix ecto.setup
- Start Phoenix endpoint with
mix phx.server
or inside IEx withiex -S mix phx.server
- Install dependencies with
yarn install
ornpm install
- Start the React application with
yarn start
ornpm start