Merge branch 'master' of github.com:nabeelio/phpvms
This commit is contained in:
@@ -8,19 +8,18 @@ the old, phpVMS classic, it's [available here](https://github.com/nabeelio/phpvm
|
|||||||
# installation
|
# installation
|
||||||
|
|
||||||
run the following commands. for right now, we're running on sqlite. for mysql, set
|
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
|
```bash
|
||||||
cp .env.example .env
|
cp .env.dev.example .env
|
||||||
composer install --no-interaction
|
composer install --no-interaction
|
||||||
php artisan optimize
|
php artisan database:create
|
||||||
sqlite3 database/testing.sqlite ""
|
|
||||||
php artisan migrate:refresh --seed
|
php artisan migrate:refresh --seed
|
||||||
```
|
```
|
||||||
|
|
||||||
then point your webserver to the `/public` folder. for example, in nginx:
|
then point your webserver to the `/public` folder. for example, in nginx:
|
||||||
|
|
||||||
```
|
```nginx
|
||||||
server {
|
server {
|
||||||
listen 80 default_server;
|
listen 80 default_server;
|
||||||
listen [::]:80 default_server ipv6only=on;
|
listen [::]:80 default_server ipv6only=on;
|
||||||
|
|||||||
Reference in New Issue
Block a user