Skip to content

VSCodium/vscodium.github.io

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
img
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Source code of vscodium.com

This repository contains the source code of the www.vscodium.com website.

Build process

The website uses Jekyll, a static website engine that compiles the jekyll template into a static html website.

How to download and test the website in localhost

Clone the repo

git clone https://github.com/VSCodium/vscodium.github.io

cd vscodium.github.io

Install jekyll and launch the development server

Install jekyll from the official website

Or use the package manager of your GNU/Linux distribution (i.e. sudo apt install jekyll)

and run the following command inside the site source to start a temporary server

jekyll serve

then open a browser and go to

http://localhost:4000

Build and deploy the static code

Run the following command inside the jekyll source

jekyll build

and move the content of the _site folder in your webserver root to deploy the website