App Development Steps

Step 1: We will install node.js

* Download the Node.js from the Internet and Install it

Step 2: Install Gatsby Framework, this framework will help us in designing a web application.

* npm install -g gatsby-cli

Step 3: Create a Web Application

* gatsby new my-intel-app

Step 4: Run the Default Web Application

  cd my-intel-app

* gatsby develop ( to run the application in development Mode )

---------- Now we are done with Application Development in Our Local Computer---------

Step 5: Build the Application

* gatsby build ( to build the application for production purpose )

* After the build command, a folder called "Public" is generated.

* Now this public folder has to be deployed on the Server	

Step 6: Test the Application

-- Skipping as of Now

Step 7: Provision the Test Server

Step 8: Deploy the Application to the Server.

Last updated