This code serves as a template for the student project.
Detailed description: https://nuxt.com/docs/getting-started/introduction
https://nuxt.com/docs/guide/directory-structure
- /pages: https://nuxt.com/docs/getting-started/routing
- /components: https://nuxt.com/docs/guide/directory-structure/components
- /stores: https://nuxt.com/docs/getting-started/state-management#usage-with-pinia
- /layouts: https://nuxt.com/docs/guide/directory-structure/layouts
- /public: https://nuxt.com/docs/getting-started/assets#public-directory
- /assets: https://nuxt.com/docs/getting-started/assets
- /server: https://nuxt.com/docs/guide/directory-structure/server
nuxt.config.ts: https://nuxt.com/docs/getting-started/configuration#nuxt-configuration app.config.ts: https://nuxt.com/docs/getting-started/configuration#app-configuration
Configuration variables can be defined in the .env file. This file should never be checked in. An example was created with .env.example . https://nuxt.com/docs/guide/directory-structure/env
Description of how to set up and use Supabase. https://github.com/Interaktive-Medien/2023_HS_IM3
The library @nuxtjs/supabase can be used to connect your nuxt project to Supabase. https://supabase.nuxtjs.org/get-started
Make sure to install the dependencies:
# npm
npm install
Start the development server on http://localhost:3000
:
# npm
npm run dev