Skip to content

This repository provides the base docker and CI/CD pipeline boilerplate for starting a Symfony 4 project.

Notifications You must be signed in to change notification settings

nicklaw5/symfony-base

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

symfony-base

This repository provides the base docker and CI/CD pipeline boilerplate for deploying a Symfony 4 application to AWS ECS.

Prerequisites

  • Git
  • Composer
  • Docker & Docker Compose
  • Buildkite account (paid subscription for private repositories)

Before Starting

  • Create an empty repository on GitHub
  • Create a new Buildkite pipeline for your new GitHub repository

Getting Started

# Clone this repository (without .git directory)
git clone --depth=1 [email protected]:nicklaw5/symfony-base.git <project-name>
cd <project-name>
rm -rf .git

# Install base Symfony skeleton
composer create-project symfony/website-skeleton symfony

# Add phpunit-bridge package
composer require --dev -d symfony symfony/phpunit-bridge

# Start the Buildkite agent
docker-compose -f ./docker-compose-bk-agent.yaml run -e BUILDKITE_AGENT_TOKEN=<your-bk-agent-token> bk-agent

# Push newly created project to GitHub
git init
git add .
git commit -m "First commit"
git git remote add origin [email protected]:<username>/<project-name>.git
git push -u origin master

About

This repository provides the base docker and CI/CD pipeline boilerplate for starting a Symfony 4 project.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published