Skip to content
This repository has been archived by the owner on Feb 3, 2023. It is now read-only.

Software Used

Maximilian Ehrhardt edited this page Mar 13, 2020 · 2 revisions

This page should collect information about several software tools, that were used during the ExoMy project.

Website

Github Pages allows you to host a website next to your repository.

Bootstrap

http-server is a command-line http-server, that allows you to host a website locally on your computer. This allows you to check your website before you push it to Github.

Installation

Run in your command line:

npm i http-server

Usage

Open your command line and move to the folder that contains the index.html of your website. Run following command;

http-server -c-1

The argument runs the server without caching, this allows you to see changes of your website immediately. Open a browser and type in one of the of the ip-addresses shown on the command line.

Coding

VSCode

Vim

Linux

Also known as Z shell, ZSH is a command line alternative to bash, that is standard on most Linux systems. ZSH comes with some handy features and is expandable by plugins that can be managed by oh-my-zsh.

Installation:

sudo apt-get install zsh
sudo apt-get install curl 
sudo apt-get install git
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

Features:

  • Improved tab completion
  • Color schemes
  • Git integration