-
AWS – AWS IoT Core
-
AWS – Amazon API Gateway
-
AWS – Amazon S3 Transfer Acceleration
-
AWS – AWS Snowcone / Snowball / Snowmobile
-
AWS – AWS DataSync
-
AWS – AWS Kinesis Video Streams
-
AWS – AWS Kinesis Data Firehose.
-
AWS – AWS Kinesis Data Streams
-

AWS – How To Deploy Two Application In Nginx Server?
GenAI – How To Deploy Two Application In Nginx Server ? Table Of Contents: Steps To Deploy Two Application In Nginx Server. Step-1: Mention This PUBLIC_URL Wherever You Are Referring The Static Files. Set base paths so React can load static files properly when hosted under a subfolder. In App.js, all paths to static files should use: src={`${process.env.PUBLIC_URL}/images/Harman-3.png`} Step-2: Take Two Separate Build For Two Applications. # For Softline $env:PUBLIC_URL="/softline/"; npm run build # For Hardline $env:PUBLIC_URL="/hardline/"; npm run build Step-3: SSH Into Server ssh [email protected] Step 4: Create Directories for Each App sudo mkdir -p /var/www/html/hardline sudo mkdir -p
-

AWS – How To Redeploy Python API Changes?
GenAI – How To Redeploy Python API Changes? Table Of Contents: Steps To Redeploy The Python Changes. Step-1: Make Your Code Changes Update your FastAPI or Flask code (hardline_main.py, etc.) Step-2: Stop the Existing Service sudo systemctl stop hardline.service Update your FastAPI or Flask code (hardline_main.py, etc.) Step-3: Reload systemd Daemon sudo systemctl daemon-reload This reloads the service definitions (needed only if you’ve edited .service files). Step-4: Start the Updated Service sudo systemctl start hardline.service This starts the service again using your latest code. Step 5 (Optional but Recommended): Enable Service on Boot sudo systemctl enable hardline.service Makes sure your
