Getting Started

Step 0: Fork the GitHub Repository

Go to your favorite Browser, Go to this GitHub Repository and Fork this repository by clicking on the icon

GitHub Image

Note: If you like the project, starred the repository

Step 1: Clone the GitHub Repository

Clone the your forked GitHub Repository

git clone https://github.com/:username:/search-apps.git

for eg:

git clone https://github.com/StrangNoob/search-apps.git

Step 2: Install Dependencies

Go to the Folder and install the dependencies via npm

cd search-apps && npm install

if you are using the yarn package manager, use this command.

cd search-apps && yarn install

Step 3: Install Template Dependencies

Install the template dependencies using npm

npm run usecase:install

if you are using the yarn package manager, use this command.

yarn usecase:install

Step 4: Build Template Dependencies

Build the template Dependencies using npm,

npm run usecase:build

if you are using the yarn package manager, use this command.

yarn usecase:build

Step 5: Creating a .env

Copy the .env.example to .env, use this command

cp .env.example .env

if you are a windows user, this command might not work. Use this command

copy .env.example .env

Last updated

Was this helpful?