Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 943 Bytes

File metadata and controls

41 lines (27 loc) · 943 Bytes

Element 43 Website

The portfolio site for Element 43.

Table of contents

Development

1. Setting up the dev environment

  1. Install the dependencies:
npm install

2. Setting the environment variables

  1. Copy the .env.example into a .env file using:
cp -n .env.example .env
  1. Edit the values in the newly created .env file.

3. Running locally

  1. Start the web server:
npm start
  1. Navigate to http://localhost:${PORT} - replacing the ${PORT} value with the value from your .env file.