Technical Requirements
For the Symfony application
- PHP 8.0
- PDO-SQLite PHP extension enabled;
- Git
- Composer
- Symfony CLI
- and the usual Symfony application requirements.
For the Svelte application, you would need a Package manager - this application uses Yarn.
$ git clone https://github.com/ybjozee/Twilio_MessageLog.git
$ cd Twilio_MessageLog
$ composer install
$ yarn install
Make a local version of the .env
file
$ cp .env .env.local
Update the relevant Twilio keys in .env.local
TWILIO_ACCOUNT_SID="INSERT_TWILIO_ACCOUNT_SID"
TWILIO_AUTH_TOKEN="INSERT_TWILIO_AUTH_TOKEN"
Bundle your Svelte application
$ yarn dev
# To watch for changes
# yarn watch
Run your application
$ symfony serve