Skip to content

AlxcNL/Data-Technologies-public

 
 

Repository files navigation

Data Technologies

Jeroen Boogaard

Development Setup

  1. Install Git

    Make sure you select "Checkout as-is, commit Unix-style line endings" during the installation process.

  2. Authenticate with GitHub CLI

    gh auth login
  3. 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

  4. Install Visual Studio Code

  5. (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 .
  6. (Optional) Install VSCode Extensions

SQLite3

  • Create and activate virtual environment

    conda create -n sqlite
    conda activate sqlite
  • Install and run sqllite

    conda install conda-forge::sqlite
    sqlite3

About

Public repository for the course Data Technologies

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • PLpgSQL 100.0%