This is a example project with a Symfony 5 app deployed using CDK on AWS.
symfony-cdk-example/
app/ # The Symfony project
docker/ # Dockerfile(s) of the project
bin/ # CDK app description
lib/ # CDK stack definitions
test/ # CDK tests
docker-compose.yml # docker-compose configuration for local development
The cdk.json
file tells the CDK Toolkit how to execute your app.
Using docker-compose
:
docker-compose up
And go to http://localhost:8000
Using CDK
:
You will need valid AWS credentials.
npm install && cdk deploy SymfonyAppDevStack
cdk destroy SymfonyAppDevStack
Please submit a pull request or a bug on the project!
- Julien Bras - Initial work - julbrs
This project is licensed under the MIT License - see the LICENSE.md file for details