https://github.com/vscodium/vscodium.github.io
a landing page for info about vscodium
https://github.com/vscodium/vscodium.github.io
floss hacktoberfest open-source vscode
Last synced: 8 months ago
JSON representation
a landing page for info about vscodium
- Host: GitHub
- URL: https://github.com/vscodium/vscodium.github.io
- Owner: VSCodium
- License: mit
- Created: 2018-11-28T14:43:54.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-08-14T06:02:12.000Z (10 months ago)
- Last Synced: 2025-10-04T09:00:20.466Z (8 months ago)
- Topics: floss, hacktoberfest, open-source, vscode
- Language: CSS
- Homepage: https://vscodium.github.io
- Size: 1.48 MB
- Stars: 123
- Watchers: 7
- Forks: 46
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Source code of vscodium.com
This repository contains the source code of the [www.vscodium.com website](https://www.vscodium.com).
## Build process
The website uses [Jekyll](https://jekyllrb.com/), 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](https://jekyllrb.com/)
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](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