Group project for Advanced Web Applications at the University made with Nuxt.
- App configuration + db dockerization.
- Most of the styling.
- Various FE components (ex. Topbar).
- Auth module (endpoints and views) with password recovery through email (gmail smtp).
- User profile management panel (full CRUD).
- Various modules for admin panel + took up work on charts from one group member.
- Ensured reactivity on views made by myself.
- Limited the number of logins allowed in a given period of time from a given IP address.
- Provided session validation for protected BE endpoints.
Make sure to install the dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn installStart the development server on http://localhost:3000:
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn devBuild the application for production:
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn buildLocally preview production build:
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn previewCheck out the deployment documentation for more information.







