Deploy React App on Google App Engine

  Рет қаралды 16,955

Rethinking UI

Rethinking UI

3 жыл бұрын

Steps:
1. Create React App
2. Push React App to Git Repo
3. Create Google Account trail version
4. create a project
5. create appengine application
6. git clone project
7. npm i & npm run build
8. remove other files expect build folder
9. create app.yaml file and insert the content there
10. gcloud app deploy
11. gcloud app browse
Copy paste the app.yaml content
---------------------------------------------------------------------------
runtime: nodejs12
handlers:
Serve all static files with url ending with a file extension
- url: /(.*\..+)$
static_files: build/\1
upload: build/(.*\..+)$
Catch all handler to index.html
- url: /.*
static_files: build/index.html
upload: build/index.html
---------------------------------------------------------------------------
Please like, share and subscribe if you find the video useful.
Checkout the Playlists:
👉 FrontEnd JavaScript Interview Questions: • #4 JavaScript Intervie...
👉 JavaScript Tutorials:
• Difference Between var...
👉 Essentials for Web developers:
• How Does the Browser C...
👉 React Hooks & Latest concepts:
• Rules of Hooks In Reac...
👉 HTML Tutorials:
• WebStorage APIs Sessio...
👉 CSS Tutorials:
• How Does CSS Work | Th...
👉 Coding Challenges:
• Coding Challenge #5: A...
👉 Best Practices & Common mistakes:
• Best Practices of Usin...
👉 React js for Beginners:
• Why To Use JSX in Reac...
👉 Things To Know As JavaScript/FrontEnd Developer:
• Things To Know As Java...
LIKE | SHARE | SUBSCRIBE 😊
#javascript #reactjs #react #webdevelopment #frontenddevelopment #uidevelopment
#javascriptinterviewquestions #interviewquestions #codingchallenges
👇👇👇
Follow me on
Telegram: t.me/+HTxs0I-Jvu75RxWM
Instagram: / rethinkingui
Twitter: / suresh9058
LinkedIn: / suresh-mende-a1a20459

Пікірлер: 34
@Tyuvfdhb
@Tyuvfdhb 3 жыл бұрын
couldnt be explained simpler than this. Noone focuses on the real steps. everyone has tutorials for automatic deployment which are way too complicated. this is the best one i have found so far
@RethinkingUI
@RethinkingUI 3 жыл бұрын
Thank u
@danielleivy8180
@danielleivy8180 Жыл бұрын
That's my issue. Although I need to do automatic deployment right after this, I think it's important to break each process down and iterate. Know how to deploy in the gui or shell first, then translate all of your steps to IaC. I wasted about 2 days before I realized I was overcomplicating things by going straight to IaC without starting with the basics first.
@Alec0124
@Alec0124 2 жыл бұрын
Best explanation I've found. Thank you sir!
@RethinkingUI
@RethinkingUI 2 жыл бұрын
Thank you
@xuantienpham5777
@xuantienpham5777 Жыл бұрын
Worked extremely quickly. Thank you so much!
@RethinkingUI
@RethinkingUI Жыл бұрын
Your Welcome. Please share the video
@darnasowjanya2628
@darnasowjanya2628 3 жыл бұрын
Clear and nice explanation
@PrudhvirajDandi
@PrudhvirajDandi 3 жыл бұрын
Nice Explanation, thank you so much for sharing such a beautiful video's for us.
@RethinkingUI
@RethinkingUI 3 жыл бұрын
Thank u @Prudhviraj
@skyi5987
@skyi5987 5 ай бұрын
Thank you sir, easiest video ever
@RethinkingUI
@RethinkingUI 5 ай бұрын
Thank you
@veeruj1282
@veeruj1282 3 жыл бұрын
Nice explanation bro
@RethinkingUI
@RethinkingUI 3 жыл бұрын
Thank u @Veeru
@kishoreandra
@kishoreandra 3 жыл бұрын
👌🏻...
@madhan5407
@madhan5407 Жыл бұрын
Hi can you make video to deploy react + springboot application on google cloud springboot needs to be deployed on GKE and react on app engine I tried but getting mixed content warning so can you help here
@yadav-r
@yadav-r 3 ай бұрын
Thank you for sharing. If possible, can you please do a video on YAML files, why and how of it, I am stuck there. If I create a Remix app, then this YAML file does not work for it and I have no clue what to change/adapt for that and whatif some new framework I wish to use. Thank you again man.
@MT4d616e
@MT4d616e 10 ай бұрын
thanks very much.. it was nice.. I also tried the same way to deploy Nextjs app but it is throwing 500 internal error.. how to solve that. ?
@gajamanurag7155
@gajamanurag7155 Жыл бұрын
Hi, I did the same thing as yours, app got deployed without any errors and got url. When I navigate to that URL I don't see my React application. I can see the name and icon in the tab section. Could please help me with this?
@RethinkingUI
@RethinkingUI Жыл бұрын
Check in the console any error?
@CoolManGen
@CoolManGen Жыл бұрын
I copy "app.yaml" config, and it work! Thanks a lot!!!🙏🙏🙏
@RethinkingUI
@RethinkingUI Жыл бұрын
Your Welcome
@PrudhvirajDandi
@PrudhvirajDandi 3 жыл бұрын
Instead of Google provided URL, can we use our own URL?
@RethinkingUI
@RethinkingUI 3 жыл бұрын
Yes, we also can provide a custom domain. In-App Engine Right bottom we will have settings Options, In that second tab is for custom domains there we can set our own domain. Please check it.
@abhishektiwari7421
@abhishektiwari7421 Жыл бұрын
but if i m deleting the files then again taking pull from the branch ...so it is showing some error while creating the build...so want to know is it neccessary to delete the files?
@RethinkingUI
@RethinkingUI Жыл бұрын
Am not sure about what your talking? Can you please keep the error here. Also steps you did and which step you got strucked.
@sonangcao7091
@sonangcao7091 2 жыл бұрын
how can i open tab -- INSERT -- in vim? please!
@RethinkingUI
@RethinkingUI 2 жыл бұрын
Type i to switch to insert mode in vim
@blackboxbs8642
@blackboxbs8642 3 жыл бұрын
What mic do you use?
@RethinkingUI
@RethinkingUI 3 жыл бұрын
Dell Pro Stereo Headset UC 350 www.amazon.in/Dell-Pro-Stereo-Headset-UC350/dp/B06XPGPY3H
@user-yk4fh1fs1k
@user-yk4fh1fs1k Жыл бұрын
I followed every step but just getting a white screen? how do i fix?
@RethinkingUI
@RethinkingUI Жыл бұрын
Any error u got in console. At wt point u got white screen.
@hendoitechnologies
@hendoitechnologies 2 ай бұрын
how to connect with custom domain react app
@RethinkingUI
@RethinkingUI 2 ай бұрын
It will be mentioned in the video can you please check it
Things To Know About React Props | Props
14:35
Rethinking UI
Рет қаралды 664
Google App Engine - how to deploy React client and Node.js API Server
1:03:31
Идеально повторил? Хотите вторую часть?
00:13
⚡️КАН АНДРЕЙ⚡️
Рет қаралды 8 МЛН
Это реально работает?!
00:33
БРУНО
Рет қаралды 1,9 МЛН
ПРОВЕРИЛ АРБУЗЫ #shorts
00:34
Паша Осадчий
Рет қаралды 7 МЛН
Run your React app on Google Cloud
16:28
Google Cloud Tech
Рет қаралды 17 М.
Deploy React project to Compute Engine (with free SSL certificate)
25:30
Connect to Cloud SQL from App Engine in Google Cloud
15:50
Cloud Advocate
Рет қаралды 36 М.
How to Deploy a Frontend React App on Vercel in Minutes
9:37
Arpan Neupane
Рет қаралды 44 М.
Deploying a React app to Google Cloud.
11:49
Telexar Academy
Рет қаралды 36 М.
Run your Angular app on Google Cloud
17:10
Google Cloud Tech
Рет қаралды 7 М.
3 Alternatives for Heroku's Free Tier - Full Stack & API Hosting
13:04
Traversy Media
Рет қаралды 217 М.
Google Cloud - App Engine Tutorial For Beginners
46:05
in28minutes - Get Cloud Certified
Рет қаралды 82 М.
Learn Frontend Development in 2024 (7 levels)
15:02
Kan Adachi
Рет қаралды 13 М.
Why We Need Feature Flags & How To Implement it In ReactJS
10:08
Samsung laughing on iPhone #techbyakram
0:12
Tech by Akram
Рет қаралды 7 МЛН
#samsung #retrophone #nostalgia #x100
0:14
mobijunk
Рет қаралды 14 МЛН
Мой новый мега монитор!🤯
1:00
Корнеич
Рет қаралды 658 М.
Запрещенный Гаджет для Авто с aliexpress 2
0:50
Тимур Сидельников
Рет қаралды 1 МЛН