Skip to content

abimmost/ScheDo-Web

Repository files navigation

ScheDo-Web

My trial To-Do list web app

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.

Setup Instructions for Windows

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.

Prerequisites

  1. XAMPP installed and running (Apache and MySQL).
  2. Composer installed (for dependency management).
  3. Git installed (for cloning the repository).

Step 1: Clone or Download 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.

Step 2: Navigate to the Project Folder

Open Command Prompt and navigate to the project folder:

cd path\to\ScheDo-Web

Step 3: Install Dependencies

Run the following command to install the required vendor components:

composer install

Step 4: Set Up Environment Configuration

  1. Create a .env file by copying the .env.example file:
    cp .env.example .env
  2. Generate an application key for secure encryption and decryption:
    php artisan key:generate

Step 5: Create a Database

  1. Open phpMyAdmin (or your preferred MySQL client).
  2. Create a new database for the project (e.g., schedo_web).

Step 6: Configure the .env File

  1. Open the .env file in a text editor.
  2. 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 and DB_PASSWORD accordingly.

Step 7: Run the Application

  1. Start the development server:

    php artisan serve

    This will start the application at http://localhost:8000.

  2. Run the database migrations to set up the required tables:

    php artisan migrate

Step 8: Access the Application

Open your browser and navigate to http://localhost:8000. You should now see the ScheDo-Web application running locally.

Contributing

Contributions are welcome! If you'd like to contribute to ScheDo-Web, please follow these steps:

  1. Fork the repository.
  2. Create a new branch for your feature or bugfix.
  3. Commit your changes and push to your branch.
  4. Submit a pull request with a detailed description of your changes.

License

This project is open-source and available under the MIT License.

Support

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 Logo

Build Status Total Downloads Latest Stable Version License

About Laravel

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:

Laravel is accessible, powerful, and provides tools required for large, robust applications.

Learning Laravel

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.

Laravel Sponsors

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.

Premium Partners

Contributing

Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the Laravel documentation.

Code of Conduct

In order to ensure that the Laravel community is welcoming to all, please review and abide by the Code of Conduct.

Security Vulnerabilities

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.

License

The Laravel framework is open-sourced software licensed under the MIT license.

About

My trial To-Do list web app

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published