-
Install dependencies:
$ npm install
-
Set up local DB by following this doc.
-
In two separate terminal, run:
$ npm run start:frontend
and
$ npm run start:backend
-
Visit
localhost:5173
.
-
Install the
Prettier - Code formatter
Extension. -
Add this snippet to the
settings.json
file:
{
// ... other settings
"editor.fontSize": 14,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}