/startup

Primary LanguageJavaScriptMIT LicenseMIT

Startup

Installation

Requirements

  • Composer
  • Laravel Framework 5.8+
  • Node.js & NPM

Installing Startup

Run the following command in your console terminal:

$ composer require imfx/startup

Or if you want to download the files, add the following configuration to the composer.json file:

    "repositories": [
        {
            "type": "path",
            "url": "../startup"
        }
    ],

or if you are symlinking the package locally:

$ ln -s ../startup startup
    "repositories": [
        {
            "type": "path",
            "url": "../startup",
            "options": {
                "symlink": true
            }
        }
    ],

Next, add the package to the require section of your composer.json file:

"require": {
    "php": "^7.2",
    "fideloper/proxy": "^4.0",
    "laravel/framework": "5.8.*",
    "laravel/tinker": "^1.0",
    "imfx/startup": "*"
},

Now run composer update command:

$ composer update

Database Credentials

Next make sure to create a new database and add your database credentials to your .env file:

DB_HOST=localhost
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret

Run the installer

Finally, run the install command and migrate Artisan commands.

$ php artisan startup:install

$ php artisan migrate

Security

If you discover any security related issues, please use the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.