Go to file
2017-06-12 22:48:32 -05:00
app #11 integrate pjax scaffold for form reload for deleting fares 2017-06-12 22:48:32 -05:00
bootstrap laravel base files 2017-06-08 13:28:26 -05:00
config #11 integrate pjax scaffold for form reload for deleting fares 2017-06-12 22:48:32 -05:00
database seed db from yaml file 2017-06-12 22:47:53 -05:00
public add pjax support 2017-06-11 18:20:43 -05:00
resources #11 integrate pjax scaffold for form reload for deleting fares 2017-06-12 22:48:32 -05:00
routes aircraft fares association code 2017-06-11 19:02:29 -05:00
storage laravel base files 2017-06-08 13:28:26 -05:00
tests code styling 2017-06-10 18:41:35 -05:00
.editorconfig initial files 2017-06-07 18:43:25 -05:00
.env.example add airports table and #7 integrate permissions 2017-06-11 11:36:16 -05:00
.env.travis more fixes for travis 2017-06-08 22:50:22 -05:00
.gitignore updated composer files 2017-06-10 22:50:53 -05:00
.travis.yml fix for travis 2017-06-11 11:42:29 -05:00
artisan laravel base files 2017-06-08 13:28:26 -05:00
composer.json seed db from yaml file 2017-06-12 22:47:53 -05:00
composer.lock seed db from yaml file 2017-06-12 22:47:53 -05:00
Dockerfile initial files 2017-06-07 18:43:25 -05:00
gulpfile.js laravel base files 2017-06-08 13:28:26 -05:00
LICENSE Initial commit 2017-06-07 18:35:27 -05:00
Makefile fixed admin route prefix problem and invalid validations 2017-06-11 15:37:57 -05:00
package-lock.json commit package-lock.json 2017-06-11 17:45:48 -05:00
package.json laravel base files 2017-06-08 13:28:26 -05:00
phpunit.xml some refactoring for tests and adding some tables 2017-06-09 22:19:17 -05:00
README.md add codacy badge 2017-06-11 12:44:24 -05:00
server.php laravel base files 2017-06-08 13:28:26 -05:00

phpvms 4

Build Status Codacy Badge Total Downloads Latest Stable Version Latest Unstable Version License

The next phpvms version built on the laravel framework. work in progress. If you're looking for the old, phpVMS classic, it's available here.

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.

cp .env.example .env
composer install --no-interaction
php artisan optimize
sqlite3 database/testing.sqlite ""
php artisan migrate:refresh --seed

then point your webserver to the /public folder. for example, in nginx:

server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;

    root /var/www/laravel/public;
    index index.php index.html index.htm;

    server_name localhost;

    location / {
            try_files $uri $uri/ =404;
    }
}

using laradock

laradock is probably the simplest way to get an env working, and is what I use. just follow the instructions and point APPLICATION=../phpvms to your phpvms path.

see this article for more detailed instructions.

(TODO: redis information, etc)

updating

extract files and run the migrations:

php artisan migrate