Skip to content

ComcastSamples/dating-app-pwa

Repository files navigation

dating-app-pwa

Sample Progressive Web App for Cats

Quickstart

git clone git@github.com:ComcastSamples/dating-app-pwa.git
cd dating-app-pwa
npm i
npm start

What's Inside

Ionic | React | Workbox |

Detailed Getting Started

  1. Install node.

    The build image is based on Node.js v18, which is LTS through October 18, 2023. It is strongly recommended that all developers use the same version to avoid inconsistencies between libraries. Using NVM (Node Version Manager) is an easy way to switch between Node versions. Docs and Installation Instructions for NVM are available at NVM's Github page.

    Once you install NVM, install Node.js:

    nvm install 18
    

    After installing, tell NVM to use that version using this repo's .nvmrc file:

    nvm use
    
  2. Install dependencies:

    npm i
    
  3. Start the server:

    Development

    npm start
    

    This should point your browser to http://localhost:3000/

    If you make code changes, the app will update and refresh.