https://github.com/engsahaly/github-actions-course
Mastering CI/CD with GitHub Actions: Automate, Test, Deploy Course Files on Udemy
https://github.com/engsahaly/github-actions-course
ci-cd continuous-delivery continuous-deployment continuous-integration github-actions
Last synced: 3 months ago
JSON representation
Mastering CI/CD with GitHub Actions: Automate, Test, Deploy Course Files on Udemy
- Host: GitHub
- URL: https://github.com/engsahaly/github-actions-course
- Owner: engsahaly
- Created: 2025-03-11T00:53:13.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-04-03T12:20:31.000Z (about 1 year ago)
- Last Synced: 2025-08-11T16:32:38.133Z (10 months ago)
- Topics: ci-cd, continuous-delivery, continuous-deployment, continuous-integration, github-actions
- Language: Blade
- Homepage: https://www.udemy.com/course/mastering-cicd-with-github-actions-automate-test-deploy/?referralCode=A75014190DAFC85F533B
- Size: 244 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Mastering CI/CD with GitHub Actions: Automate, Test, Deploy Course Files on Udemy
**Created By :** Mahmoud Anwar
**Email :** Engsahaly@gmail.com
This is the main readme file for the code used in Mastering CI/CD with GitHub Actions: Automate, Test, Deploy course on Udemy
## Installation
To get started, clone this repository.
```
git clone https://github.com/engsahaly/github-actions-course.git
```
Next, copy your `.env.example` file as `.env` and configure your Database connection.
```
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=YOUR-DATABASE-NAME
DB_USERNAME=YOUR-DATABASE-USERNAME
DB_PASSWORD=YOUR-DATABASE-PASSWROD
```
## Run Packages and helpers
You have to all used packages and load helpers as below.
```
composer install
npm install
npm run build
```
## Generate new application key
You have to generate new application key as below.
```
php artisan key:generate
```
## Run Migrations and Seeders
You have to run all the migration files included with the project and also run seeders as below.
```
php artisan migrate
php artisan db:seed
```