App Development Steps
Step 1: We will install node.js
* Download the Node.js from the Internet and Install itStep 2: Install Gatsby Framework, this framework will help us in designing a web application.
* npm install -g gatsby-cliStep 3: Create a Web Application
* gatsby new my-intel-appStep 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 NowStep 7: Provision the Test Server
Step 8: Deploy the Application to the Server.
Last updated