Skip to content

thiskevinwang/scoot-swe-frontend-assessment

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Netlify Status

Scoot - Associate SWE Assignment

The Front End project for Scoot Networks' Associate Engineer assessment.

Getting Started

Prerequisites

  • Node.js version >= 6.5
  • npm version >= 3.10

To check node.js and npm versions, run:

node -v
npm -v

Install Dependencies

From the project root directory:

npm install

Running in development mode

npm start

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

Running in production mode

npm run build && serve -s build
# or
npm run prod

Builds the app to the build folder, and serves it.
Open http://localhost:5000 to view it in the browser.

WARNING

The <ScootMap /> component runs in development mode by default, even if the app is running in production mode.

Steps to override:

REACT_APP_GOOGLE_API_KEY= #API key goes here
  • Save
  • Rename .env.example to .env

Note: .env is excluded from version control to avoid sharing API keys (ex. to GitHub). And may no longer be viewable from your text editor. To edit it directly...

From the project root directory:

open .env
# or
vim .env

The map should now run in production mode, when the app is in production mode as well!