Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 1.28 KB

setup-guide.md

File metadata and controls

48 lines (31 loc) · 1.28 KB

Project Setup for Development.

The project compizes of two sections, one is the web application and one is the cli tool. Now both are written in different techstacks so they require different setup process. But it all starts with forking the repository, and cloning the forked repository in the development server.

So for that make sure you have git installed. If not you can get installation guidelines from their official website.

git clone https://github.com/debarshee2004/scaffoldgen.git
cd scaffoldgen

CLI Tool


Web Application

Prerequisites for this project is having node installed and a package manager like yarn or pnpm installed. If not you can install nodejs via NVM (Node Version Manager), yarn form thier official documentation and pnpm by thier official documnetation.

Step 01: Lets first move into the web-app directory, and install the packages required for the project.

cd web-app
pnpm install

OR

cd web-app
yarn install

Step 02: Running the application in development server on PORT:3000.

npm run dev

OR

yarn dev