Getting started
Deployment
11 min
download the project after clicking generate and download, the project file will be downloaded to your computer (once the database configuration is complete) find the downloaded file in your downloads folder and unzip (extract) it open the project folder in ide go to the folder you just unzipped and open that folder directly in your ide (for example, visual studio code) install and open the ide if you don’t have an ide yet, install visual studio code recommended open two terminals once the project is open in vs code 1\ click on terminal → new terminal from the top menu 2\ a panel will open at the bottom of vs code 3\ repeat the same step again so you now have two terminals open think of these terminals as two chat windows first terminal one will be used for the frontend (website part) 	 second terminal the other will be used for the backend (server part) setup the frontend in the first terminal, type cd frontend if node js/npm is not installed note npm comes bundled with node js; you don’t install it separately 1\ visit https //nodejs org/en/download 2\ download the lts (recommended) version 3\ run the installer and keep the default options (ensure 'install npm' is checked) 4\ verify installation by typing node v npm v setup python (for backend) the backend requires python to run if python is not installed 1\ visit https //www python org/downloads/ 2\ download the latest python 3 x version(when you install the latest versions of python (3 4 and above) from the official python website, pip is automatically included by default if not follow step5 ) 3\ run the installer important check 'add python to path', then click install now 4\ verify installation python –versioncheck if pip is installed pip –version 5 if pip is missing 1\ download get pip py from https //bootstrap pypa io/get pip py 2\ save the file, then run command prompt as administrator python get pip py 3\ verify again with pip –version setup the backend in the second terminal, type cd backend then install backend dependencies(first time only) pip install r requirements txt start the backend in the second terminal, start the backend server python main py start the frontend return to the first terminal and start the frontend server npm i (then install all required dependencies) npm run dev open the application after running the above command, a local development link will appear (e g ,http //localhost 3000/) hold ctrl and click the link to open your application in the browser user guide video tutorial by following the above steps, you can successfully run the deployed end user application on your local system ensuring that the required tools (vs code, node js, and python) are properly installed will help the application run smoothly in case of any issues during setup or execution, kindly refer to the above video tutorial guide