Nuxt UI Minimal Starter

This code serves as a template for the student project.

Project Structure

Detailed description: https://nuxt.com/docs/getting-started/introduction

Folders and Files

https://nuxt.com/docs/guide/directory-structure

Configuration Files

nuxt.config.ts: https://nuxt.com/docs/getting-started/configuration#nuxt-configuration app.config.ts: https://nuxt.com/docs/getting-started/configuration#app-configuration

Environment Variables

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

Supabase

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

Install

Make sure to install the dependencies:

# npm
npm install

Development Server

Start the development server on http://localhost:3000:

# npm
npm run dev