1. Set Up Your Laravel Project on GitHub
Initialize a Git Repository in Your Laravel Project:
- In your project directory:bash
git init git add . git commit -m "Initial commit"
- In your project directory:
Create a New GitHub Repository:
- Go to GitHub, create a new repository, and name it.
- Copy the repository URL.
Push Your Local Repository to GitHub:
- Link your local repository with the GitHub remote and push it:bash
git remote add origin https://github.com/your-username/your-repo.git git branch -M main git push -u origin main
- Link your local repository with the GitHub remote and push it:
2. Setting Up GitHub Actions for CI/CD
To automate testing, linting, and deployment:
Create a GitHub Workflow:
- Inside your Laravel project directory, create a folder
.github/workflows/
. - Create a file named
ci-cd.yml
in this directory:yamlname: CI/CD Pipeline on: push: branches: [main] pull_request: branches: [main] jobs: build: runs-on: ubuntu-latest steps: - name: Checkout Code uses: actions/checkout@v2 - name: Set up PHP uses: shivammathur/setup-php@v2 with: php-version: '8.1' - name: Install Dependencies run: | composer install npm install && npm run dev cp .env.example .env php artisan key:generate - name: Run Tests run: php artisan test
- Inside your Laravel project directory, create a folder
Configure Environment Variables in GitHub:
- Add the required environment variables (e.g.,
DB_USERNAME
,DB_PASSWORD
, etc.) under your GitHub repository settings in Settings > Secrets and variables > Actions.
- Add the required environment variables (e.g.,
Automate Deployments (Optional):
- Add deployment steps within your
ci-cd.yml
file to deploy to your hosting provider.
- Add deployment steps within your
3. Set Up Local Development
Clone the Repository Locally:
bashgit clone https://github.com/your-username/your-repo.git
Install Dependencies:
- Inside your project directory:bash
composer install npm install && npm run dev
- Inside your project directory:
Configure Local Environment:
- Copy
.env.example
to.env
, set up database configurations, and generate an application key:bashcp .env.example .env php artisan key:generate
- Copy
Run Migrations and Seed Database (If Necessary):
bashphp artisan migrate --seed
4. Development Workflow with GitHub
Feature Branch Workflow:
Create a new branch for each feature:
bashgit checkout -b feature-branch
Commit your changes and push to GitHub:
bashgit add . git commit -m "Feature description" git push origin feature-branch
Create a pull request on GitHub for review and testing.
Code Reviews and Testing: Run automated tests with GitHub Actions and review code before merging.
5. Deployment
Use GitHub Actions to deploy the application automatically, or connect with platforms like Forge, DigitalOcean, or AWS for continuous delivery and deployment.
This setup should streamline your Laravel development while maintaining an organized, automated, and collaborative workflow. Let me know if you need further customization or specific configurations!
4o
0 Reviews:
Posting Komentar