ScheDo-Web is a web application designed to help users manage their tasks efficiently in the form of a to-do list. Built with modern web development tools, it provides a clean and intuitive interface for organizing tasks, setting priorities, and tracking progress.
This project is ideal for programmers looking to explore a functional task management system or contribute to an open-source web application.
To set up ScheDo-Web on your local machine, follow these steps. This guide assumes you are using XAMPP (Apache and MySQL) as your local server environment.
- XAMPP installed and running (Apache and MySQL).
- Composer installed (for dependency management).
- Git installed (for cloning the repository).
Clone the repository to your local machine using Git:
git clone https://github.com/your-username/ScheDo-Web.git
Alternatively, download the repository as a ZIP file and extract it to your desired location.
Open Command Prompt and navigate to the project folder:
cd path\to\ScheDo-Web
Run the following command to install the required vendor components:
composer install
- Create a
.env
file by copying the.env.example
file:cp .env.example .env
- Generate an application key for secure encryption and decryption:
php artisan key:generate
- Open phpMyAdmin (or your preferred MySQL client).
- Create a new database for the project (e.g.,
schedo_web
).
- Open the
.env
file in a text editor. - Update the database configuration settings:
DB_DATABASE=schedo_web DB_USERNAME=root DB_PASSWORD=
- Replace
schedo_web
with the name of the database you created. - If your database has a username and password, update
DB_USERNAME
andDB_PASSWORD
accordingly.
- Replace
-
Start the development server:
php artisan serve
This will start the application at
http://localhost:8000
. -
Run the database migrations to set up the required tables:
php artisan migrate
Open your browser and navigate to http://localhost:8000
. You should now see the ScheDo-Web application running locally.
Contributions are welcome! If you'd like to contribute to ScheDo-Web, please follow these steps:
- Fork the repository.
- Create a new branch for your feature or bugfix.
- Commit your changes and push to your branch.
- Submit a pull request with a detailed description of your changes.
This project is open-source and available under the MIT License.
If you encounter any issues or have questions, feel free to open an issue on the GitHub repository.
Thank you for using ScheDo-Web! Happy task management! 🚀
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
- Simple, fast routing engine.
- Powerful dependency injection container.
- Multiple back-ends for session and cache storage.
- Expressive, intuitive database ORM.
- Database agnostic schema migrations.
- Robust background job processing.
- Real-time event broadcasting.
Laravel is accessible, powerful, and provides tools required for large, robust applications.
Laravel has the most extensive and thorough documentation and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.
You may also try the Laravel Bootcamp, where you will be guided through building a modern Laravel application from scratch.
If you don't feel like reading, Laracasts can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel Partners program.
- Vehikl
- Tighten Co.
- WebReinvent
- Kirschbaum Development Group
- 64 Robots
- Curotec
- Cyber-Duck
- DevSquad
- Jump24
- Redberry
- Active Logic
- byte5
- OP.GG
Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the Laravel documentation.
In order to ensure that the Laravel community is welcoming to all, please review and abide by the Code of Conduct.
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [email protected]. All security vulnerabilities will be promptly addressed.
The Laravel framework is open-sourced software licensed under the MIT license.