Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 1 KB

README.md

File metadata and controls

29 lines (23 loc) · 1 KB

YAPA (Yet Another Podcast App)

Running Locally

Prerequisites

  • git (Preinstalled on most mac and linux machines)
  • node (I recommend nvm for handling multiple node versions and upgrading node when the time comes)
  • docker (and docker-compose, which I'm pretty sure just comes with Docker)

Run

Start in the directory you wish for the project to live

  1. clone the repo (i.e. git clone git@github.com:sambigelow/yapa.git)
  2. From the project root (cd ./yapa)
    1. spin up the nginx docker container
      1. Make sure docker is already running
      2. docker-compose up
  3. From the api (cd ./api)
    1. install dependencies (npm i)
    2. start the server (npm start)
  4. From the frontend (cd ../frontend)
    1. install dependencies (npm i)
    2. start the dev server (npm run dev)
  5. It's running! visit http://localhost:8080 for "Hello, World!"