Skip to content

kaitech-kaist/guide

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kaitech: Guide

Community-based guide/wiki for students interested in tech career!

Offline usage

As the website is PWA optimized it is possible to install it as a web app if you have Chrome browser.

On Mobile:

Click on menu tray > Add to Home Screen.

PWA mobile install screen

On Desktop

In url bar to the right click on (+) icon.

PWA desktop install screen

Development

This website is build on top of GatsbyJS and Rocketseat starter theme. Be sure to install Gatsby in order to develop and preview the website locally.

As a quickstart you can just copy the following commands.

git clone https://github.com/kaitech-kaist/guide.git
cd guide
yarn install # or npm
yarn start 

Adding/Editing article

All articles in the current version of the website reside in src/docs folder. In order to add an article you have to go through 2 steps:

  1. Create file in src/docs/<Category>/new-article.mdx, where <Category> is a category under which your article is going to be. (Example of the file)
  2. In your .mdx file be sure to include title and authorship in this format:
---
title: 'Your title'
---
Author(s): [Name](https://github.com/username)

Last updated of: **25 July 2020**

NOTE: If you are co-authoring/editing, you also have to include your name in Authors line

  1. Edit src/config/sidebar.yml so that it includes the link to your article and a new category if you want to create one.

Notes

To access original Rocketseat docs on top of which this site was build you can access this repo.