···98989999Or with Docker:
100100101101-```bash
101101+```
102102docker build -t aip .
103103docker run -p 8080:8080 \
104104 // all of the above env vars here
···116116117117This is stored as the `wireservice_oauth_url` option and can also be set programmatically:
118118119119-```php
119119+```
120120update_option('wireservice_oauth_url', 'https://your-domain.com');
121121```
122122123123## Filters
124124125125-```php
125125+```
126126// Customize which post types are synced (default: post, page)
127127add_filter('wireservice_syncable_post_types', function ($types) {
128128 $types[] = 'custom_post_type';