...
/Import Symfony Application and Save Files to GitHub Repository
Import Symfony Application and Save Files to GitHub Repository
Learn how to modify the Symfony application and deploy it using the GitHub Actions pipeline we created.
We'll cover the following...
Import the GitHub repo
Let’s bring our previous work on Symfony into the terminal below.
In the Educative terminal below, set the Git environment variables, GitHub username, and AWS keys.
- Run the command below to clone the GitHub repo:
Press + to interact
git clone https://$(echo $GITHUB_USERNAME)@github.com/$(echo $GITHUB_USERNAME)/educative-course-github-pipeline.git
Your password is the PAT you created earlier.
- Remove the
README.md
file by running the commands below because it was being used for testing.
Press + to interact
rm -rf educative-course-github-pipeline/README.md
Add Symfony files
We will now pull the Symfony files we ...