Web Programming Foundations
Schedule Notes Resources Graded Work MyApps Instructions Cyclic Guide Code examplesDuring this course, you may wish to use the computers in the Learning Commons or one of Seneca’s many Windows-based Lab computers to write your code. Like other courses offered at Seneca, we have made this possible by making the required software available through MyApps.
While it’s recommended that you use your own Linux / Unix based platform (Or one of the pre-configured Mac Labs), we understand that it’s not always possible. If this is indeed the case, please follow these instructions to get Visual Studio, Git and Node.js up and running using MyApps.
Click on the “Seneca MyApps” shortcut on the desktop to open up the main web interface for MyApps (This may already be open after logging on)
On the right corner (under your name), you should see a “Search Apps” field:
Search for the text “VSCode”
This should effectively trim the results down to a single result (VSCode + Node + Git). Hover over the result to reveal a “Launch” button:
Click the “Launch” Button. This should open the “Cloudpaging Player” with our VSCode + Node + Git combo added to the bottom:
You should also notice that a folder has opened up containing the following shortcuts:
Click on the “Code - Shortcut” shortcut to open Visual Studio Code.
Before you do anything in Visual Studio Code, you must change the “Default Shell” that will be used by our Integrated Terminal in Visual Studio Code:
With Visual Studio Code open and focused, enter the keyboard shortcut: Shift + Ctrl + P. This will bring up a command prompt with various options:
Type “Shell” and you should see the following options:
Click the first option “Terminal: Select Default Shell” You should then see the below options:
Lastly, Click the bottom option: “Git Bash”
This should correctly configure your development environment within MyApps. To confirm this, open up the Integrated Terminal and try entering the commands:
git --version
and
node --version
You should see that the commands are found and the current version numbers are displayed in the Terminal.
Congratulations your development environment is properly configured. Happy Coding!