https://github.com/goldengamerlp/schoolandfeedback
https://github.com/goldengamerlp/schoolandfeedback
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/goldengamerlp/schoolandfeedback
- Owner: GoldenGamerLP
- Created: 2024-11-27T18:39:24.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-12-22T14:57:59.000Z (over 1 year ago)
- Last Synced: 2025-02-09T00:16:30.153Z (over 1 year ago)
- Language: Vue
- Size: 506 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.