Skip to content

Commit

Permalink
Initialize the Node.js module
Browse files Browse the repository at this point in the history
  • Loading branch information
yunpengn committed May 11, 2019
1 parent 3362e45 commit 9339362
Show file tree
Hide file tree
Showing 4 changed files with 4,781 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Mac OS-specific files
.DS_Store

# GitBook build output folder
_book/

# Logs
logs
*.log
Expand Down
31 changes: 28 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,31 @@
## AWS Certificate Examination Preparation Guide

This repository presents the preparation guide for [AWS Certificate Examination](https://aws.amazon.com/certification/) written by [Yunpeng](https://yunpengn.github.io/).
# AWS Certificate Examination Preparation Guide

This repository presents the preparation guide for [AWS Certificate Examination](https://aws.amazon.com/certification/) written by [Yunpeng](https://yunpengn.github.io/). Currently, it is proundly powered by [GitBook](https://github.com/GitbookIO/gitbook).

- Production Site: [https://yunpengn.github.io/CertAWS/](https://yunpengn.github.io/CertAWS/)
- Staging Site: [https://yunpengn-blog.netlify.com/](https://yunpengn-blog.netlify.com/)

## Developement

- Make sure you have installed the latest version of [Node.js](https://nodejs.org/), [Npm](https://www.npmjs.com) and [Git](https://git-scm.com/) on your development machine. Npm should come with Node.js.
- You chould check them by `git --version`, `node -v` and `npm -v`.
- Fork and clone this repository to your computer.
```bash
git clone [email protected]:yunpengn/CertAWS.git
```
- Navigate to this directory.
```bash
cd CertAWS
```
- Install all the dependencies stated in `package.json` (or `package-lock.json`).
```bash
npm install
```
- Run the GitBook server to host the website locally.
```bash
npm start
```
- Now, you can visit the website at `http://localhost:4000/`.

## Licence

Expand Down
Loading

0 comments on commit 9339362

Please sign in to comment.