Go to file
2017-07-13 22:30:32 -05:00
.idea Cleanup of database reset and cleanup 2017-07-13 13:45:59 -05:00
app #21 adjust the pirep view/edit form 2017-07-13 22:09:38 -05:00
bootstrap laravel base files 2017-06-08 13:28:26 -05:00
config Cleanup of database reset and cleanup 2017-07-13 13:45:59 -05:00
database #21 adjust the pirep view/edit form 2017-07-13 22:09:38 -05:00
public #13 show airport map on details page with aerodome info 2017-06-15 22:45:25 -05:00
resources cleaned up the table views to fix alignments 2017-07-13 22:10:46 -05:00
routes #48 add custom fields/values to flights 2017-07-11 17:44:12 -05:00
storage #16 update scaffolding and remove accidentally committed settings file 2017-06-20 15:17:40 -05:00
tests travis - cleanup database creation/migration for tests 2017-07-13 15:43:56 -05:00
.editorconfig #23 set the rank payrate to an aircraft; add some sample data 2017-06-21 22:30:32 -05:00
.env.dev.example Cleanup of database reset and cleanup 2017-07-13 13:45:59 -05:00
.env.travis travis - run reset again 2017-07-13 14:39:10 -05:00
.gitignore Adjust columns in migrations and give lens to strings and custom flight fields #48 2017-07-10 18:54:51 -05:00
.htaccess #21 PIREP scaffolding 2017-06-28 19:57:22 -05:00
.travis.yml travis - stop supressing output 2017-07-13 15:23:55 -05:00
after.sh include vagrant and update README 2017-06-13 12:50:03 -05:00
aliases include vagrant and update README 2017-06-13 12:50:03 -05:00
artisan laravel base files 2017-06-08 13:28:26 -05:00
composer.json set version to 4.0.0-dev 2017-07-13 22:30:32 -05:00
composer.lock set version to 4.0.0-dev 2017-07-13 22:30:32 -05:00
Dockerfile initial files 2017-06-07 18:43:25 -05:00
gulpfile.js experimenting with gulp 2017-06-21 12:29:31 -05:00
Homestead.yaml include the Homestead.yaml 2017-06-13 12:51:01 -05:00
LICENSE Initial commit 2017-06-07 18:35:27 -05:00
Makefile travis - cleanup database creation/migration for tests 2017-07-13 15:43:56 -05:00
package-lock.json commit package-lock.json 2017-06-11 17:45:48 -05:00
package.json experimenting with gulp 2017-06-21 12:29:31 -05:00
phpunit.xml travis - stop supressing output 2017-07-13 15:23:55 -05:00
phpvms.iml travis - stop supressing output 2017-07-13 15:23:55 -05:00
Procfile #11 some more organization around the aircraft 2017-06-14 09:39:02 -05:00
README.md fixed travis-ci link in README 2017-07-11 17:51:12 -05:00
server.php laravel base files 2017-06-08 13:28:26 -05:00
Vagrantfile include vagrant and update README 2017-06-13 12:50:03 -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;
    }
}

development environment

For development, copy the included .env.example to .env file. By default, it uses sqlite instead of mysql. This makes it much easier to be able to clear the database and new fixtures.

makefile commands

I use Makefiles to be able to quickly setup the environment.

# to do an initial setup of the composer deps and install the DB
make

Then to reset the database/clear cache, use:

make reset

database seeding

There is a database/seeds/dev.yml which contains the initial seed data that can be used for testing. For production use, there is a prod.yml file. The make reset handles seeding the database with the data from the dev.yml.

virtual machine

Using Laravel Homestead is probably the easiest way to get this working. Follow their instructions for install. A Vagrantfile and Homestead.yaml is included here. Add this to your /etc/hosts:

127.0.0.1       phpvms.app

And then to launch:

vagrant up

And then accessing it via http://phpvms.app should just work.

(TODO: redis information, etc)

updating

extract files and run the migrations:

php artisan migrate