Introduction:
- A collaborative platform for families to build a digital timeline of memories with their loved ones in their final chapter of life. A slideshow of all the memories can be viewed at any time by all family membres. When a loved one closes their final chapter, the memories family members added can be turned into a book to celebrate their life at a funeral or memorial.
git clone https://github.com/ihughes22/Team1-Agile.git
cd Team1-Agile/digital-memory-book
npm start
npm i react-pageflip
npm i react-scripts
npm i react-router-dom
npm install react-bootstrap bootstrap
npm install firebase
-
to install prettier locally
- run
npm install --save-dev --save-exact prettier
- to format all files:
npx prettier . --write
- to check which files to format:
npx prettier . --check
- run
-
or just run prettier on a file/ format on save
-
install prettier from VSCode Extensions
-
follow this for more info: https://www.robinwieruch.de/how-to-use-prettier-vscode/
-
CTRL SHIFT P and open user preferences (json)
-
add the follow to your json file
"editor.formatOnSave": true // enable per-language (here: Prettier as formatter) "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }
-