Skip to content
On this page

Using VSCode

Opening a Folder

The biggest improvement you can make is opening the entire project folder into VSCode. This will allow you to easily weave through folders, files, etc. and pretty much use VSCode as an entire workspace for development.

How do you do it?

  1. Open VSCode
  2. Go to File
  3. Click on Open Folder
  4. Navigate to your privately cloned Athena Framework folder
  5. Open!

Want to know if you did it right? Your Athena folder should look like this:

A Workspace Folder of Athena in VSCode

Pushing Changes

If you modify code you can use VSCode to push your changes to your private repository. This will only work if you follow the full installation tutorial with a private fork.

You can stage changes by click the + sign.


Visual Guide

Follow the image below.

Once changes are staged, you can write about it and push it up to your private repository by hitting the checkmark or type the command.


CLI Command

You write these into a terminal.

git add ./src/somefileOrFolder
git commit -m "i changed some stuff" && git push origin master

Created by Stuyk | Est. 2020