From 15499c09887ce703239d5976b16cd357b36c9520 Mon Sep 17 00:00:00 2001 From: Nabeel Shahzad Date: Fri, 14 Jul 2017 11:48:10 -0500 Subject: [PATCH] updated README with install instructions --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 16718c9b..74e592a4 100755 --- a/README.md +++ b/README.md @@ -8,19 +8,18 @@ the old, phpVMS classic, it's [available here](https://github.com/nabeelio/phpvm # installation run the following commands. for right now, we're running on sqlite. for mysql, set -`DB_CONNECTION` to `mysql` in the `.env` file, and skip the `sqlite3` step below. +`DB_CONNECTION` to `mysql` in the `.env` file. ```bash -cp .env.example .env +cp .env.dev.example .env composer install --no-interaction -php artisan optimize -sqlite3 database/testing.sqlite "" +php artisan database:create php artisan migrate:refresh --seed ``` then point your webserver to the `/public` folder. for example, in nginx: -``` +```nginx server { listen 80 default_server; listen [::]:80 default_server ipv6only=on;