Skip to content

Latest commit

 

History

History
76 lines (47 loc) · 1.23 KB

README.md

File metadata and controls

76 lines (47 loc) · 1.23 KB

Showcase - SvelteKit & PocketBase Application

This project is being built in a series on my YouTube Channel focused on building a full stack application with SvelteKit, PocketBase, and DaisyUI.

Get Started

Specific Episode Code

Show instructions
  1. Clone the branch for that episode (replace episode-1 with whatever episode you are looking to clone):

    $ git clone --single-branch --branch episode-1 https://github.com/huntabyte/showcase.git
  2. Start PocketBase Server

    cd apps/backend
    
    ./pocketbase serve 
  3. Install Dependencies

    cd apps/web
    
    npm i
  4. Start Dev Server

     cd apps/web
     
     npm run dev

Full Project / main branch

Show instructions
  1. Clone the repository:

    git clone https://github.com/huntabyte/showcase.git
  2. Start PocketBase Server

    cd apps/backend
    
    ./pocketbase serve 
  3. Install Dependencies

    cd apps/web
    
    npm i
  4. Start Dev Server

     cd apps/web
     
     npm run dev