An open API service indexing awesome lists of open source software.

https://github.com/goldengamerlp/schoolandfeedback


https://github.com/goldengamerlp/schoolandfeedback

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# School and Feedback System

A modern web application built with Nuxt.js that provides a platform for managing school-related feedback and interactions.

## Features

- 🎨 Modern UI with Tailwind CSS and shadcn components
- 🌙 Dark/Light mode support
- 🔒 Authentication system
- 📱 Responsive design
- 🎯 Performance optimized
- 🔍 SEO friendly with sitemap generation
- MORE COMING SOON!

## Prerequisites

- Node.js (v16 or higher)
- npm, pnpm, yarn, or bun package manager

## Environment Variables

Create a `.env` file in the root directory with the following variables:
1. MONGODB_URI=mongodb://localhost:27017
2. MONGODB_DATABASE=schoolandfeedback

## Getting Started

1. Clone the repository:

## Setup

Make sure to install dependencies:

```bash
# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install
```

## Development Server

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

```bash
# npm
npm run dev

# pnpm
pnpm dev

# yarn
yarn dev

# bun
bun run dev
```

## Production

Build the application for production:

```bash
# npm
npm run build

# pnpm
pnpm build

# yarn
yarn build

# bun
bun run build
```

Locally preview production build:

```bash
# npm
npm run preview

# pnpm
pnpm preview

# yarn
yarn preview

# bun
bun run preview
```

Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.