Skip to content

Fabdoc27/Notebuddy

Repository files navigation

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