Skip to content

muzhawir/raffley

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Raffley

Elixir Phoenix application learning project from The Pragmatic Studio for selling tickets.

Getting Started

Set Up the Database

Install Docker and run the following command to start a PostgreSQL container for development:

docker run -d \
  -e POSTGRES_USER=postgres \
  -e POSTGRES_PASSWORD=postgres \
  -e POSTGRES_DB=raffley_dev \
  -p 5432:5432 \
  -v pgdata:/var/lib/postgresql/data \
  --name my_postgres_container \
  postgres

Install Dependencies

mix setup

Start the Phoenix Server

mix phx.server

Or, to run inside IEx:

iex -S mix phx.server

Visit http://localhost:4000 in your browser.

Production Deployment

Ready to deploy? See the Phoenix deployment guides.

Resources

About

Phoenix app for selling tickets (Pragmatic Studio Course)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published