Clone the repo
git clone https://github.com/RedbeardTFL/ATIS_GENERATOR.git && cd ATIS_GENERATOR/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 the development server
php artisan serve
Pull the image
docker pull insidiousfiddler/redbeards-atis-generator
Run the container with your database credentials
docker run -d -p 8000:80 insidiousfiddler/redbeards-atis-generator -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
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!
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)Distributed under the CC BY-NC-SA 4.0
License. See LICENSE
for more information. The CC BY-NC-SA 4.0
License overrides the included LICENSE
file. The LICENSE file included is a secondary license that also applies to this project and is included for reference.