### Install Frontend Dependencies Source: https://github.com/shakeefahmedrakin/electron-react-ts-tailwind-shadcn-fastapi-template/blob/main/README.md Installs all the necessary Node.js packages for the frontend of the application using npm. ```bash npm install ``` -------------------------------- ### Install Python Backend Dependencies Source: https://github.com/shakeefahmedrakin/electron-react-ts-tailwind-shadcn-fastapi-template/blob/main/README.md Installs Python packages required for the FastAPI backend from the 'requirements.txt' file. ```bash pip install -r requirements.txt ``` -------------------------------- ### Run Development Server Source: https://github.com/shakeefahmedrakin/electron-react-ts-tailwind-shadcn-fastapi-template/blob/main/README.md Starts both the FastAPI backend and the Electron application with hot-reloading for the React frontend. Ensure the Python virtual environment is activated first. ```bash npm run dev ``` -------------------------------- ### Create and Activate Python Virtual Environment Source: https://github.com/shakeefahmedrakin/electron-react-ts-tailwind-shadcn-fastapi-template/blob/main/README.md Steps to create and activate a Python virtual environment for managing backend dependencies. This is crucial for isolating project requirements. ```bash # On Windows: cd backend python -m venv venv venv\Scripts\activate ``` ```bash # On macOS/Linux: cd backend python3 -m venv venv source venv/bin/activate ``` -------------------------------- ### Clone Repository and Navigate Source: https://github.com/shakeefahmedrakin/electron-react-ts-tailwind-shadcn-fastapi-template/blob/main/README.md Commands to clone the project repository using Git and change the directory into the newly cloned project folder. ```bash git clone https://github.com/ShakeefAhmedRakin/electron-react-ts-tailwind-shadcn-fastapi-template.git cd electron-react-ts-tailwind-shadcn-fastapi-template ``` -------------------------------- ### Create Production Build Source: https://github.com/shakeefahmedrakin/electron-react-ts-tailwind-shadcn-fastapi-template/blob/main/README.md Generates a platform-specific production build of the Electron application. The output is typically placed in a 'release/{version}' folder. ```bash npm run build ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.