Skip to content

Simple module repository tool website using Laravel, Docker, Blade, PHP

License

Notifications You must be signed in to change notification settings

MovieTone/module-repository-tool

Repository files navigation

Table Of Contents

Built with

Getting Started

Installation

Using Docker

  1. Clone or download the repo
  2. Install Docker Desktop
  3. Navigate to the root directory of the project
  4. Run docker build -t module-repository-tool .
  5. Run docker-compose up --build
  6. Migrate the database:
    docker exec -it php bash
    And in the same console:
    php artisan migrate
  7. Run http://127.0.0.1:8080/

Without Docker

  1. Clone or download the repo
  2. Download and install Composer
  3. Install Laravel:
    composer global require "laravel/installer=~1.1"
  4. Run the Web server of your choice (XAMPP, Nginx etc.)
  5. Navigate to the /app directory of the project and run the following commands in this order:
  6. Run composer install
  7. Migrate the database: php artisan migrate
  8. Run php artisan serve
  9. Run http://127.0.0.1:8000/

License

Licensed under the Apache, Version 2.0 license.