How to setup and deploy a Sylius project on Clever Cloud.
Simpler version of the Sylius Setup
Run make install.
You can use make reset to reset the local environment.
You need to create the following secrets in your Github repository
CELLAR_ENDPOINT: Host of the cellar serviceCELLAR_BUCKET: The name of your bucket in the cellar serviceCELLAR_ACCESS_KEY: Access key for the cellar serviceCELLAR_SECRET_KEY: Secret key for the cellar service
If you don't have cellar to store your artifacts, you can create one on Clever Cloud.
make cellarBefore running this command be sure you created a file named .organizationId containing your Clever Cloud organization ID.
Create a file containing your Clever Cloud organization ID:
echo "your-organization-id" > .organizationIdTo set up the application and the addons on Clever Cloud, run:
make setupYou can use make destroy to delete the application and its addons.
To configure all the environment variables, run:
make envThen you can deploy your application with:
make deploy