How To Set Up VS Code For FNB App Academy

Step by step how to set up VS code for FNB app academy

Starting your journey with the FNB App Academy is exciting — but let’s be honest, it can also be a little confusing at first.

You’re told to use Visual Studio Code (VS Code), but when you watch the self-help video shared with you… it’s showing something completely different: Brackets. They were a bit lazy and gave us a 7 year old video from some other course. But the course is free, so let’s be appreciative of the opportunity and make it work.

In this guide, we’ll walk you step-by-step through how to set up your coding workspace the right way — using VS Code.

🚨 Why Is This Important?

Your coding environment matters.

If you’re not set up properly:

  • Files may not save where they should.
  • You could get lost trying to follow lessons.
  • You’ll waste time troubleshooting simple things instead of writing code.

That’s why getting your workspace ready upfront is key to success — and we’ll help you make it easy.

✅ Step 1: Create Your Project Folders

Before writing a single line of code, let’s get organized.

Here’s what to do:

  1. Open your Documents folder (or wherever you want to store your work).
  2. Create a new folder called something like Websites or FNB App Academy.
  3. Inside that folder, create another one for your first website — for example, MyFirstWebsite.

This is where all your project files will live neatly.

✅ Step 2: Install Visual Studio Code (VS Code)

If you haven’t installed VS Code yet, here’s how:

VS Code is lightweight, fast, and very beginner-friendly once you get going.
It’s also the industry standard, so learning it now is a smart move.

✅ Step 3: Open Your Project Folder in VS Code

Once VS Code is open:

  • Click on File > Open Folder
  • Navigate to the MyFirstWebsite folder you created earlier.
  • Select it.

You should now see the folder on the left-hand sidebar — this is your workspace.

✅ Step 4: Create Your First Web Page

Time to get coding!

  • Right-click in the left sidebar.
  • Choose New File.
  • Name it index.html (this is the default home page name for websites).
  • Click Enter — and your new file will open up, ready for code.

✅ Step 5: Add Your First HTML Code

  • Copy and paste this to get started:
<!DOCTYPE html>
<html>
<head>
<title>My First Website</title>
</head>
<body>
<h1>Hello, FNB App Academy!</h1>
<p>This is my first web page using VS Code.</p>
</body>
</html>
  • Save the file (Ctrl + S or Cmd + S).

✅ Step 6: View Your Website

Here’s the magic moment:

  • Open your MyFirstWebsite folder in File Explorer / Finder.
  • Double-click index.html.
  • Your web browser will open — and there’s your website!

🚀 Bonus Tip: Use Live Server (Optional, but amazing)

You can make this even easier by installing the Live Server extension in VS Code.
This allows your page to auto-refresh every time you make a change.

To install:

  • Click the Extensions icon in VS Code.
  • Search for Live Server.
  • Click Install.
  • Now, right-click your index.html and select Open with Live Server.

🎁 Summary

While FNB’s self-help video still shows the older Brackets editor, setting up in VS Code is the best way forward.

Not only will you be using the recommended software for App Academy, but you’ll also be learning how the pros do it in the real world.

Remember:

  • Organise your folders
  • Use VS Code (download link above)
  • Create an index.html file
  • Copy in your template
  • Open in browser or Live Server

And that’s it — you’re ready to code confidently!

❤️ Final Thought

Starting something new always has little hurdles — but with the right guidance, those hurdles become stepping stones.

Onlinestudent.co.za is here to help you bridge the gaps, make sense of the confusing stuff, and get you coding (and succeeding) faster.

This is just the start of your developer journey — and with VS Code set up properly, you’re already on the right track.

📚 Further Resources


182 Others have read this article.

Comments

2 responses to “How To Set Up VS Code For FNB App Academy”

  1. Anathi Ndamase Avatar
    Anathi Ndamase

    Hi Omar! I have joined the FNB App academy, and this article couldn’t have come at a better time. I did download vs code and installed it (I struggled with additional components and extension; I just selected them all). After installing vs code, I was then stuck as to what to do next. Luckly, I had already created the folders (for Brackets). I have no idea what I’m doing, feeling anxious and excited. I did though do CAT in high school, I’m not sure how that’s going to help or how relevant it’s going to be. But I love learning, so I’m just going to let that guide me. Oh and thank you again for this article 🙂

    1. Hi Anathi — really appreciate you sharing this, and I’m so glad the article came at the right time for you.

      Honestly, everything you said sounds so familiar; that mix of being stuck, figuring things out, and feeling both anxious and excited is something most of us go through right at the start. You’re definitely not alone in that.

      And yes, even CAT from high school will help more than you expect. Even basic digital skills give you a head start here. The fact that you’re curious and willing to dive in already puts you in a great spot.

      Just take it one step at a time and keep going. Learning by doing is the best approach, and you’re already doing that. Cheering you on from here and feel free to pop back with any questions as you go

Leave a Reply

Your email address will not be published. Required fields are marked *