Community-based guide/wiki for students interested in tech career!
As the website is PWA optimized it is possible to install it as a web app if you have Chrome browser.
Click on menu tray > Add to Home Screen.
In url bar to the right click on (+) icon.
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
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:
- 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) - 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
- Edit
src/config/sidebar.yml
so that it includes the link to your article and a new category if you want to create one.
To access original Rocketseat docs on top of which this site was build you can access this repo.