How to Deploy VueJS Into AWS in 5 Mins
https://www.youtube.com/watch?v=NfdBS7_DJIo
Amazon Web Services is a subsidiary of Amazon providing on-demand cloud computing platforms and APIs to individuals, companies, and governments, on a metered pay-as-you-go basis. All articles related to AWS tips/tricks are placed here. It is the main area where AWS lovers find their choice of posts. To learn more, you can try this book from Amazon.
https://www.youtube.com/watch?v=NfdBS7_DJIo
Upload your React Application into WHM/Cpanel <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.html$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule . /index.html [L] </IfModule>
Introduction Cross-account deployment with AWS CodeCommit, CodeDeploy, and CodePipeline is a powerful way to manage the deployment of your code across different AWS accounts. Procedure AWS CodeCommit is a fully-managed…
What is the CI/CD pipeline? Continuous integration/continuous delivery (CI/CD) is a software development practice that involves frequently merging code changes into a central repository and automatically building, testing, and deploying…
Dockerfile FROM node:14-alpine3.15 WORKDIR /app RUN chown -R node /app USER root COPY package.json . RUN npm install COPY . . EXPOSE 8080 CMD [ "node", "server.js" ] Server.js const…