These instructions will get you a copy of the project up and running in your local machine for development and testing purposes.
You'll need Git and Node.js (which comes with NPM) installed on your computer.
node@v14.17.6 or higher
npm@6.14.15 or higher
git@2.35.0 or higher
From your command line, first clone dog-finder
# Clone the repository
$ git clone https://github.com/JohnMwendwa/dog-finder
# Move into the repository
$ cd dog-finder
# Remove the current origin repository
$ git remote remove origin
After that, you can install the dependencies either using NPM or Yarn.
Using NPM: Simply run the below commands.
# Install dependencies
$ npm install
# Start the development server
$ npm start
Using Yarn: Be aware that you'll need to delete the package-lock.json
file before executing the below commands.
# Install dependencies
$ yarn
# Start the development server
$ yarn start
Congratulations ✨ Your app is up and running 💨