Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 938 Bytes

README.md

File metadata and controls

44 lines (29 loc) · 938 Bytes

reflect

Platform to reflect who you are. You can see the demo.

how-to-reflect

Edit public/data.json.

local development

You can get this site up and running with one command:

npm start

other commands to know

There are a handful of commands in the package.json.

Command Description
npm run dev Run a dev server and automatically build changes.
npm run test:watch Run tests as you code.
npm run build Build the site for production.
npm run test Run the test suite once, great for CI

deploying

After you run npm run build, the contents of the public folder can be hosted as a static site.

using netlify

Add a netlify.toml file next to this README, for standard SPA routing:

[[redirects]]
  from = "/*"
  to = "/index.html"
  status = 200

Build command: npm run build

Publish directory: public