Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 700 Bytes

README.md

File metadata and controls

46 lines (31 loc) · 700 Bytes

Getting Started

Follow these steps to set up the project:

  1. Clone the repository and navigate to the directory:

    git clone [email protected]:Fabdoc27/Notebuddy.git
    cd Notebuddy
  2. Install the dependencies:

    composer install
  3. Create the environment file:

    cp .env.example .env
  4. Generate the application key:

    php artisan key:generate
  5. Run the database migrations:

    php artisan migrate
  6. Seed the database:

    php artisan db:seed
  7. Start the development server:

    php artisan serve