vATC Suite provides virtual air traffic controllers with tools to generate and deliver essential airport information. Easily create ATIS broadcasts, AWOS weather reports, and pre-departure clearances to enhance realism in online flying networks.
-
Clone the repo
git clone https://github.com/VMGWARE/vATCSuite.git && cd vATCSuite/src
-
Install Composer dependencies
composer install
-
Fill in the .env file with your database credentials
cp .env.example .env
-
Run artisan commands to generate a key and migrate the database
php artisan key:generate & php artisan migrate --seed
-
Run git command to generate a version file for the footer
git describe --always --tags --dirty > version
-
Run artisan commands to configure the site and install backpack
php artisan site:configure
php artisan backpack:install --no-interaction
-
Run the development server
php artisan serve
-
Pull the image
docker pull insidiousfiddler/vatcsuite
-
Run the container with your database credentials
docker run -d -p 8000:80 insidiousfiddler/vatcsuite -e DB_HOST=<host> -e DB_PORT=<port> -e DB_DATABASE=<database> -e DB_USERNAME=<username> -e DB_PASSWORD=<password>
-
Visit the site at http://127.0.0.1:8000
- PHP: version 8.1 or greater
- MYSQL: My current server setup is running 10.3.36-MariaDB-log-cll-lve
- cURL: is used to fetch weather info, so this function must be enabled.
- Composer: is used to install dependencies
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request