Skip to content

Latest commit

 

History

History
94 lines (60 loc) · 2.18 KB

README.md

File metadata and controls

94 lines (60 loc) · 2.18 KB

resu.me

See the website here (subject to dyno sleeping)

Available Endpoints

Built With

  • Express
  • React
  • Sass
  • Swift
  • Heroku

Prerequisites

This is an example of how to list things you need to use the software and how to install them.

  • npm
    npm install npm@latest -g

Installation

  1. Clone the repo
    git clone https://github.com/AlexWang18/Personal-Website
  2. Install NPM packages
    npm install

Run the API server

In a terminal:

# Initial setup
npm install

# Start the server
npm start

Install new npm packages for Node

npm install package-name --save

Run the React UI

The React app is configured to proxy backend requests to the local Node server. (See "proxy" config)

In a separate terminal from the API server, start the UI:

# Always change directory, first
cd frontend/

# Initial setup
npm install

# Start the server
npm start