Uses NextJS and Now by ZEIT.co
Built for the Accenture Banking Hackathon, November 2019.
Clone this repo into a new project folder and run install script. (You will probably want to delete the .git/ directory and start version control afresh.)
With npm
$ git clone [email protected]:nhi-huynh/accenture-frontend.git accenture-frontend
$ cd accenture-frontend
$ npm install
Start the dev environment with either:
$ yarn dev
or
$ npm run dev
Open http://localhost:3000 and start modifying the code in /components
, /pages
.
Build production assets (JS and CSS together) with:
npm run prod
Just add to /public/
and the production build routes them to /
This project is setup with a now.json
file to automate deployments to Now.sh by Zeit.
This starter includes Babel so you can directly use ES6 code.