Jeroen Boogaard
-
Install Git
Make sure you select "Checkout as-is, commit Unix-style line endings" during the installation process.
-
(Optional) Git Bash (Windows)
-
Authenticate with GitHub CLI
gh auth login
-
Create Git Repository
-
Create your own repository MobyPark on Github
Browse to github.com and create private repository.
-
Invite the teacher to your repository
-
Clone your git repository
gh clone [Your_GitHub_Name]/MobyPark_[group]
-
Configure git
In order to commit and push your changes, you need identitify yourself.
Run the following commands from your MobyPark repo directory with your own github username and email address:
git config user.name "github_username" git config user.email "student@hr.nl"
Once done, you can confirm that the information is set by running (see the last two lines):
git config --list
-
Add, commit and push the copied contents
Extract MobyPark.zip and add the contents to your (local) MobyPark repo
Run the following commands from your MobyPark repo directory
git add . git commit -m "Added contents for MobyPark" git push
-
-
Install Visual Studio Code
-
(Optional) Enable VSCode to be opened from the command line
Open the Command Palette and type 'shell command' in order to select the Shell command: Install 'code' command in PATH
Start VSCode with a command from current directory
code . -
(Optional) Install VSCode Extensions
-
Create and activate virtual environment
conda create -n sqlite conda activate sqlite
-
Install and run sqllite
conda install conda-forge::sqlite sqlite3