Skip to content

Parteek-on-github/OraganizeU.repo

 
 

Repository files navigation

OrganizeU G4 (WebDev Wizards)

OrganizeU is a smart personal productivity website designed to simplify life and keep you organized. It helps you manage tasks set goals and track progress effortlessly.It is a one stop solution to create your schedule manage your time and stay productive.



Project Demo

Preview.video.mp4



Project Screenshots

image
image
image

image
image
image
image

🧐 Features

Here're some of the project's best features:

  • Week and Month Planner
  • Day Schedular
  • Resource Hub
  • Student-centric Scheduling
  • Goal Progress Tracker



💻 Built with

Technologies used in the project:

  • HTML
  • CSS



👥 Team Members

🎨 Design Team

• Suhani
• Harshita
• Srushti
• Parteek

💻 Coding Team

• Mrunal
• Sambhav
• Suhani
• Surendra
• Devang
• Janmesh
• Khushi

OrganizeU - Student Productivity Suite

Deployment Configuration

Database Configuration

The application uses environment variables for database configuration. Set these environment variables in your deployment environment:

DB_URL=jdbc:mysql://your-database-host:3306/organizeu
DB_USERNAME=your-database-username
DB_PASSWORD=your-database-password

Production Deployment

To run the application in production mode:

  1. Set the environment variables mentioned above
  2. Run the application with the production profile:
java -jar organizeu.jar --spring.profiles.active=prod

Security Considerations

  • Never commit database credentials to version control
  • Use strong passwords for database users
  • Consider using a secrets management service in production
  • Use SSL/TLS for database connections in production

Database Setup

  1. Create a MySQL database:
CREATE DATABASE organizeu;
  1. Create a database user with appropriate permissions:
CREATE USER 'your-username'@'%' IDENTIFIED BY 'your-password';
GRANT ALL PRIVILEGES ON organizeu.* TO 'your-username'@'%';
FLUSH PRIVILEGES;

Environment-Specific Configuration

  • Development: Uses default configuration in application.properties
  • Production: Uses application-prod.properties with environment variables
  • Test: Can be configured using application-test.properties

About

WDA group Project

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 42.0%
  • Java 26.2%
  • CSS 18.3%
  • JavaScript 13.4%
  • Dockerfile 0.1%