Skip to content

Latest commit

 

History

History
61 lines (50 loc) · 1.46 KB

README.md

File metadata and controls

61 lines (50 loc) · 1.46 KB

Personal Website

Description

preview image Welcome to my personal website! Here you can find information about me, my projects, and my professional experiences.

Table of Contents

Getting Started

To get a local copy up and running, follow these simple steps.

Prerequisites

Installing

  1. Clone the repository:
    git clone https://github.com/Fung1117/Fung1117.github.io
  2. Navigate to the project directory:
    cd Fung1117.github.io
  3. Install the required dependencies:
    npm install

How to Start the App

To start the app in development mode, run:

npm start

This will launch the app in your default web browser. The app will reload if you make edits.

How to Deploy

To deploy the app to GitHub Pages, follow these steps:

  1. First, make sure you have the gh-pages package installed:

    npm install gh-pages --save-dev
  2. Add the following properties to your package.json file:

    "homepage": "https://Fung1117.github.io/Fung1117"
  3. Add the following scripts to the scripts section of your package.json:

    "predeploy": "npm run build",
    "deploy": "gh-pages -d build"
  4. Now, you can deploy your app by running:

    npm run deploy