Welcome to my personal website! Here you can find information about me, my projects, and my professional experiences.
To get a local copy up and running, follow these simple steps.
- Clone the repository:
git clone https://github.com/Fung1117/Fung1117.github.io
- Navigate to the project directory:
cd Fung1117.github.io
- Install the required dependencies:
npm install
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.
To deploy the app to GitHub Pages, follow these steps:
-
First, make sure you have the
gh-pages
package installed:npm install gh-pages --save-dev
-
Add the following properties to your
package.json
file:"homepage": "https://Fung1117.github.io/Fung1117"
-
Add the following scripts to the
scripts
section of yourpackage.json
:"predeploy": "npm run build", "deploy": "gh-pages -d build"
-
Now, you can deploy your app by running:
npm run deploy