Update README.md
This commit is contained in:
parent
16647fb3e1
commit
194a0401d7
|
@ -0,0 +1 @@
|
|||
DATABASE_URL=postgres://postgres.jashdjhakjdhaskdas:ThjascVq23KSZbAx@aws-0-eu-central-1.pooler.supabase.com:5432/postgres?pgbouncer=true
|
63
README.md
63
README.md
|
@ -1,26 +1,57 @@
|
|||
# BreakOften
|
||||
|
||||
BreakOften is a simple web application built with Svelte that helps users prevent computer vision syndrome by reminding them to take regular breaks.
|
||||
BreakOften is a cutting-edge web application designed to help users combat computer vision syndrome by encouraging regular breaks. Built with Svelte, BreakOften offers a seamless and customizable user experience to ensure you maintain a healthy balance between work and rest.
|
||||
|
||||
## Why BreakOften?
|
||||
|
||||
In today's digital age, prolonged screen time is inevitable. BreakOften is your personal wellness assistant, ensuring you take necessary breaks to rest your eyes and maintain productivity. Whether you're a student, professional, or avid gamer, BreakOften is tailored to fit your lifestyle.
|
||||
|
||||
## Features
|
||||
|
||||
- Regular mini breaks every 20 minutes and 20 seconds.
|
||||
- After every three mini breaks, a long break of 5 minutes is provided.
|
||||
- Users can skip or postpone breaks.
|
||||
- Customizable break durations.
|
||||
- Sound and notification alerts for break reminders.
|
||||
- **Frequent mini breaks**: Receive reminders for short breaks every 20 minutes and 20 seconds to rest your eyes.
|
||||
- **Long breaks**: After three mini breaks, enjoy a longer 5-minute break to recharge fully.
|
||||
- **Flexibility**: Skip or postpone breaks according to your needs without disrupting your workflow.
|
||||
- **Customization**: Personalize your break schedule and settings. Logged-in users have their preferences saved in their profile, while others can use `localStorage`.
|
||||
- **Alerts**: Get notified with sound and visual alerts to ensure you never miss a break.
|
||||
- **Integration with Prisma and Supabase**: Secure user authentication and storage of user-defined variables like timer settings.
|
||||
- **Theming**: Choose from dark or light mode.
|
||||
- **Fun extras**: Enjoy a touch of culture with Shakespeare quotes on your profile page!
|
||||
|
||||
## Usage
|
||||
## Getting started
|
||||
|
||||
1. Clone and cd into the repository.
|
||||
2. Install dependencies:
|
||||
Follow these steps to set up BreakOften on your local machine:
|
||||
|
||||
```
|
||||
npm install
|
||||
```
|
||||
1. **Clone the repository**:
|
||||
```bash
|
||||
git clone https://github.com/se23m504/BreakOften.git
|
||||
cd BreakOften
|
||||
```
|
||||
|
||||
3. Run the development server:
|
||||
2. **Install dependencies**:
|
||||
```bash
|
||||
npm install
|
||||
```
|
||||
|
||||
```
|
||||
npm run dev -- --open
|
||||
```
|
||||
3. **Setup environment variables**:
|
||||
|
||||
Create a `.env` file with your `DATABASE_URL`. You can start by copying the example file and then modify it:
|
||||
|
||||
```bash
|
||||
cp .env.example .env
|
||||
```
|
||||
|
||||
4. **Set up database**:
|
||||
|
||||
Push the Prisma schema to Supabase:
|
||||
|
||||
```bash
|
||||
npx prisma db push
|
||||
```
|
||||
|
||||
5. **Run the development server**:
|
||||
|
||||
Start the server and open your browser:
|
||||
|
||||
```bash
|
||||
npm run dev -- --open
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue