Code challenge application consisting on an application that allow registered users to register their expenses. The backend is Python using 'Flask', and the frontent is built with 'Svelte'.
To run and debug this application you will need to have:
Required
Optional
Prepare backend and frontend:
# performs necessary initialization
$ sh ./init.sh
Start backend at http://localhost:5000/:
$ cd backend
# start the backend
$ python3 src/app.py
Backend runs
Start frontend at http://localhost:5173/:
$ cd frontend
# start the frontend
$ npm run dev