- Download the jetbrains WebStorm IDE.
- Login your github account.
- Choose "get from VCS" and clone the repository from the github.
- "control+," to open the settings,set the node.js and choose the npm(it should be set up by default, if not, go to:https://nodejs.org/en/download
- open the terminal(built in) and run the command
npm installto install the dependencies. - run the command
npm startto start the server.
public: contains the static files. src: contains the source code.
/webapp
├── /src
│ ├── /public # Static files directory
│ │ ├── /css # Stores CSS files
│ │ │ └── style.css
│ │ ├── /js # Stores JavaScript files
│ │ │ └── script.js
│ │ ├── /images # Stores image files
│ │ │ └── logo.jpg
│ │ ├── /icons
│ │ │ └── logo.svg
│ │ └── /pages # HTML file
│ │ └── homePage.html
│ ├── /routes # Routes directory
│ │ └── appRoutes.js # Route configuration file
│ ├── /models # Database models and schemas
│ │ └── userModel.js # Example schema or model for a User
│ ├── /database # Database connection and configuration
│ │ └── db.js # Database connection logic
│ ├── app.js # Express application configuration
│ └── server.js # Main entry point, starts the server
├── package.json # Project dependencies and metadata
├── package-lock.json # Locked dependency versions
├── .env # Environment variables configuration
└── README.md # Project documentation