-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
716 lines (716 loc) · 22.5 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
{
"addons": ["heroku-postgresql:hobby-dev", "newrelic:wayne", "rediscloud:30"],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-apt"
},
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
},
{
"url": "https://github.com/moneymeets/python-poetry-buildpack"
},
{
"url": "https://github.com/heroku/heroku-buildpack-python"
},
{
"url": "https://github.com/heroku/heroku-buildpack-pgbouncer"
},
{
"url": "https://github.com/heroku/heroku-buildpack-nginx"
}
],
"description": "OCW Studio manages deployments for OCW courses.",
"env": {
"API_BEARER_TOKEN": {
"description": "Authorization bearer token for webhook endpoints",
"required": false
},
"AWS_ACCESS_KEY_ID": {
"description": "AWS Access Key for S3 storage.",
"required": false
},
"AWS_ACCOUNT_ID": {
"description": "AWS Account ID",
"required": false
},
"AWS_ARTIFACTS_BUCKET_NAME": {
"description": "S3 artifacts bucket name.",
"required": false
},
"AWS_MAX_CONCURRENT_CONNECTIONS": {
"description": "The max concurrent connections used by cp and sync AWS CLI commands",
"required": false
},
"AWS_OFFLINE_PREVIEW_BUCKET_NAME": {
"description": "S3 offline preview bucket name.",
"required": false
},
"AWS_OFFLINE_PUBLISH_BUCKET_NAME": {
"description": "S3 offline publish bucket name.",
"required": false
},
"AWS_OFFLINE_TEST_BUCKET_NAME": {
"description": "S3 offline test bucket name.",
"required": false
},
"AWS_PREVIEW_BUCKET_NAME": {
"description": "S3 preview bucket name.",
"required": false
},
"AWS_PUBLISH_BUCKET_NAME": {
"description": "S3 publish bucket name.",
"required": false
},
"AWS_QUERYSTRING_AUTH": {
"description": "Enables querystring auth for S3 urls",
"required": false
},
"AWS_REGION": {
"description": "AWS Region",
"required": false
},
"AWS_ROLE_NAME": {
"description": "AWS role name to be used for MediaConvert jobs",
"required": false
},
"AWS_SECRET_ACCESS_KEY": {
"description": "AWS Secret Key for S3 storage.",
"required": false
},
"AWS_STORAGE_BUCKET_NAME": {
"description": "S3 Bucket name.",
"required": false
},
"AWS_TEST_BUCKET_NAME": {
"description": "S3 test bucket name.",
"required": false
},
"CELERY_BROKER_URL": {
"description": "Where celery should get tasks, default is Redis URL",
"required": false
},
"CELERY_RESULT_BACKEND": {
"description": "Where celery should put task results, default is Redis URL",
"required": false
},
"CELERY_TASK_EAGER_PROPAGATES": {
"description": "Early executed tasks propagate exceptions",
"required": false
},
"CONCOURSE_HARD_PURGE": {
"description": "Perform a hard purge of the fastly cache",
"required": false
},
"CONCOURSE_IS_PRIVATE_REPO": {
"description": "True if a git repo requires authentication to retrieve",
"required": false
},
"CONCOURSE_PASSWORD": {
"description": "The concourse-ci login password",
"required": false
},
"CONCOURSE_TEAM": {
"description": "The concourse-ci team",
"required": false
},
"CONCOURSE_URL": {
"description": "The concourse-ci URL",
"required": false
},
"CONCOURSE_USERNAME": {
"description": "The concourse-ci login username",
"required": false
},
"CONTENT_SYNC_BACKEND": {
"description": "The backend to sync websites/content with",
"required": false
},
"CONTENT_SYNC_PIPELINE_BACKEND": {
"description": "The pipeline backend name to preview/publish websites with",
"required": false
},
"CONTENT_SYNC_RETRIES": {
"description": "Number of times to retry backend sync attempts",
"required": false
},
"DISABLE_WEBPACK_LOADER_STATS": {
"description": "Disabled webpack loader stats",
"required": false
},
"DJANGO_LOG_LEVEL": {
"description": "The log level for django",
"required": false
},
"DRIVE_S3_UPLOAD_PREFIX": {
"description": "Prefix to be used for S3 keys of files uploaded from Google Drive",
"required": false
},
"DRIVE_SERVICE_ACCOUNT_CREDS": {
"description": "The contents of the Service Account credentials JSON to use for Google API auth",
"required": false
},
"DRIVE_SHARED_ID": {
"description": "ID of the Shared Drive (a.k.a. Team Drive). This is equal to the top-level folder ID.",
"required": false
},
"DRIVE_UPLOADS_PARENT_FOLDER_ID": {
"description": "Gdrive folder for video uploads",
"required": false
},
"ENV_NAME": {
"description": "Name of environment from Heroku or other deployment",
"required": false
},
"FEATURE_SORTABLE_SELECT_PRESERVE_SEARCH_TEXT": {
"description": "Feature flag sortable select preserves search text",
"required": false
},
"FEATURE_SORTABLE_SELECT_HIDE_SELECTED": {
"description": "Feature flag sortable select hides selected items",
"required": false
},
"FEATURE_SORTABLE_SELECT_QUICK_ADD": {
"description": "Feature flag sortable select adds item on selection",
"required": false
},
"FEATURE_SELECT_FIELD_INFINITE_SCROLL": {
"description": "Feature flag select field allows infinite scroll",
"required": false
},
"FIELD_METADATA_TITLE": {
"description": "The site metadata field for title",
"required": false
},
"FIELD_RESOURCETYPE": {
"description": "The site config metadata field for the resource type",
"required": false
},
"GA_TRACKING_ID": {
"description": "Google analytics tracking ID",
"required": false
},
"GITHUB_APP_ID": {
"description": "A github app id to use for Github API authentication",
"required": false
},
"GITHUB_APP_PRIVATE_KEY": {
"description": "A github app private key for authentication",
"required": false
},
"GITHUB_RATE_LIMIT_CHECK": {
"description": "True if the github domain has API rate limits",
"required": false
},
"GITHUB_RATE_LIMIT_CUTOFF": {
"description": "Number of remaining Github API calls that triggers throttling",
"required": false
},
"GITHUB_RATE_LIMIT_MIN_SLEEP": {
"description": "Minimum time to sleep between when throttling github calls",
"required": false
},
"GITHUB_WEBHOOK_BRANCH": {
"description": "Github branch to filter webhook requests against",
"required": false
},
"GITHUB_WEBHOOK_KEY": {
"description": "Github secret key sent by webhook requests",
"required": false
},
"GIT_API_URL": {
"description": "Base URL of git API",
"required": false
},
"GIT_BRANCH_MAIN": {
"description": "The default branch for a git repo",
"required": false
},
"GIT_BRANCH_PREVIEW": {
"description": "The preview branch for a git repo",
"required": false
},
"GIT_BRANCH_RELEASE": {
"description": "The release branch for a git repo",
"required": false
},
"GIT_DEFAULT_USER_EMAIL": {
"description": "The email for the default git committer",
"required": false
},
"GIT_DEFAULT_USER_NAME": {
"description": "The name for the default git committer",
"required": false
},
"GIT_DOMAIN": {
"description": "Base URL of github for site repos",
"required": false
},
"GIT_ORGANIZATION": {
"description": "The organization under which repos should be created",
"required": false
},
"GIT_TOKEN": {
"description": "An authentication token for git commands",
"required": false
},
"HEROKU_APP_NAME": {
"description": "The name of the review app",
"required": false
},
"HOST_IP": {
"description": "This server's host IP",
"required": false
},
"MAILGUN_KEY": {
"description": "The token for authenticating against the Mailgun API",
"required": true
},
"MAILGUN_SENDER_DOMAIN": {
"description": "The domain to send mailgun email through",
"required": true
},
"MAX_S3_GET_ITERATIONS": {
"description": "Max retry attempts to get an S3 object",
"required": false
},
"MEDIA_ROOT": {
"description": "The root directory for locally stored media. Typically not used.",
"required": false
},
"MIDDLEWARE_FEATURE_FLAG_COOKIE_MAX_AGE_SECONDS": {
"description": "Feature flag middleware cookie max age",
"required": false
},
"MIDDLEWARE_FEATURE_FLAG_COOKIE_NAME": {
"description": "Feature flag middleware cookie name",
"required": false
},
"MIDDLEWARE_FEATURE_FLAG_QS_PREFIX": {
"description": "Feature flag middleware querystring prefix",
"required": false
},
"MITOL_MAIL_FORMAT_RECIPIENT_FUNC": {
"description": "function to format email recipients",
"required": false
},
"MITOL_MAIL_FROM_EMAIL": {
"description": "E-mail to use for the from field",
"required": false
},
"MITOL_MAIL_REPLY_TO_ADDRESS": {
"description": "E-mail to use for reply-to address of emails",
"required": false
},
"NEW_RELIC_APP_NAME": {
"description": "Application identifier in New Relic."
},
"NODE_MODULES_CACHE": {
"description": "If false, disables the node_modules cache to fix yarn install",
"value": "false"
},
"OCW_COURSE_STARTER_SLUG": {
"description": "The slug of the WebsiteStarter currently used for OCW course sites",
"required": false
},
"OCW_GTM_ACCOUNT_ID": {
"description": "The Google Tag Manager account ID to use in OCW site build pipelines",
"required": false
},
"OCW_HUGO_THEMES_SENTRY_DSN": {
"description": "The sentry DSN that will be used in ocw-hugo-themes",
"required": false
},
"OCW_IMPORT_STARTER_SLUG": {
"description": "The slug of the WebsiteStarter to assign to courses imported from ocw-to-hugo",
"required": false
},
"OCW_MASS_BUILD_BATCH_SIZE": {
"description": "The amount of site builds per job to put in MassBuildSitesPipelineDefinition",
"required": false
},
"OCW_MASS_BUILD_MAX_IN_FLIGHT": {
"description": "The amount of sites to build simultaneously in each job created by MassBuildSitesPipelineDefinition",
"required": false
},
"OPEN_CATALOG_WEBHOOK_KEY": {
"description": "Open catalog webhook key",
"required": false
},
"OCW_STUDIO_ADMIN_EMAIL": {
"description": "E-mail to send 500 reports to.",
"required": false
},
"OCW_STUDIO_BASE_URL": {
"description": "Base url for the application in the format PROTOCOL://HOSTNAME[:PORT]",
"required": true
},
"OCW_STUDIO_DB_CONN_MAX_AGE": {
"description": "Maximum age of connection to Postgres in seconds",
"required": false
},
"OCW_STUDIO_DB_DISABLE_SSL": {
"description": "Disables SSL to postgres if set to True",
"required": false
},
"OCW_STUDIO_DB_DISABLE_SS_CURSORS": {
"description": "Disables Postgres server side cursors",
"required": false
},
"OCW_STUDIO_DRAFT_URL": {
"description": "The base url of the preview site",
"required": false
},
"OCW_STUDIO_EMAIL_BACKEND": {
"description": "The default email backend to use for outgoing email. This is used in some places by django itself. See `NOTIFICATION_EMAIL_BACKEND` for the backend used for most application emails.",
"required": false
},
"OCW_STUDIO_EMAIL_HOST": {
"description": "Outgoing e-mail hostname",
"required": false
},
"OCW_STUDIO_EMAIL_PASSWORD": {
"description": "Outgoing e-mail auth password",
"required": false
},
"OCW_STUDIO_EMAIL_PORT": {
"description": "Outgoing e-mail port",
"required": false
},
"OCW_STUDIO_EMAIL_TLS": {
"description": "Outgoing e-mail TLS setting",
"required": false
},
"OCW_STUDIO_EMAIL_USER": {
"description": "Outgoing e-mail auth username",
"required": false
},
"OCW_STUDIO_ENVIRONMENT": {
"description": "The execution environment that the app is in (e.g. dev, staging, prod)",
"required": true
},
"OCW_STUDIO_FROM_EMAIL": {
"description": "E-mail to use for the from field",
"required": false
},
"OCW_STUDIO_LIVE_URL": {
"description": "The base url of the live site",
"required": false
},
"OCW_STUDIO_LOG_HOST": {
"description": "Remote syslog server hostname",
"required": false
},
"OCW_STUDIO_LOG_HOST_PORT": {
"description": "Remote syslog server port",
"required": false
},
"OCW_STUDIO_LOG_LEVEL": {
"description": "The log level default",
"required": false
},
"OCW_STUDIO_SECURE_SSL_REDIRECT": {
"description": "Application-level SSL redirect setting.",
"required": false
},
"OCW_STUDIO_SITE_CONFIG_FILE": {
"description": "Standard file name for site config files",
"required": false
},
"OCW_STUDIO_SITE_ID": {
"description": "The default site id for django sites framework",
"required": false
},
"OCW_STUDIO_SUPPORT_EMAIL": {
"description": "Email address listed for customer support",
"required": false
},
"OCW_STUDIO_USE_S3": {
"description": "Use S3 for storage backend (required on Heroku)",
"required": false
},
"OCW_TEST_COURSE_STARTER_SLUG": {
"description": "The slug of the course Website used to run end to end tests",
"required": false
},
"OCW_TEST_WWW_STARTER_SLUG": {
"description": "The slug of the root Website used to run end to end tests",
"required": false
},
"OPEN_CATALOG_URLS": {
"description": "List of open catalog urls",
"required": false
},
"PGBOUNCER_DEFAULT_POOL_SIZE": {
"value": "50"
},
"PGBOUNCER_MIN_POOL_SIZE": {
"value": "5"
},
"POSTHOG_API_HOST": {
"description": "API host for PostHog",
"required": false
},
"POSTHOG_ENABLED": {
"description": "Whether PostHog is enabled",
"required": false
},
"POSTHOG_FEATURE_FLAG_REQUEST_TIMEOUT_MS": {
"description": "Timeout (ms) for PostHog feature flag requests",
"required": false
},
"POSTHOG_PROJECT_API_KEY": {
"description": "API token for communicating with PostHog",
"required": false
},
"PREPUBLISH_ACTIONS": {
"description": "Actions to perform before publish",
"required": false
},
"PUBLISH_INCOMPLETE_BUILD_STATUS_FREQUENCY": {
"description": "Frequency (in seconds) to run a check on potentially stalled publish builds",
"required": false
},
"PUBLISH_STATUS_CUTOFF": {
"description": "Number of seconds to wait for a publish build to fail/succeed before assuming it's stuck",
"required": false
},
"PUBLISH_STATUS_WAIT_TIME": {
"description": "Number of seconds to wait for a publish status update before querying for it via api",
"required": false
},
"REDISCLOUD_URL": {
"description": "RedisCloud connection url",
"required": false
},
"REDIS_MAX_CONNECTIONS": {
"description": "Max number of redis connections",
"required": false
},
"REDIS_URL": {
"description": "Redis URL for non-production use",
"required": false
},
"RESOURCE_TYPE_FIELDS": {
"description": "List of site configuration fields that are used to store resource type",
"required": false
},
"ROBOTS_CACHE_TIMEOUT": {
"description": "How long the robots.txt file should be cached",
"required": false
},
"ROOT_WEBSITE_NAME": {
"description": "The Website name for the site at the root domain",
"required": false
},
"S3_TRANSCRIPTS_PREFIX": {
"description": "s3 transcripts subfolder",
"required": false
},
"SEARCH_API_URL": {
"description": "The URL to open discussions search to inject into the theme assets build",
"required": false
},
"COURSE_SEARCH_API_URL": {
"description": "The URL to open discussions learning resource search to inject into the theme assets build",
"required": false
},
"CONTENT_FILE_SEARCH_API_URL": {
"description": "The URL to open discussions content file search to inject into the theme assets build",
"required": false
},
"SECRET_KEY": {
"description": "Django secret key.",
"generator": "secret",
"required": true
},
"SENTRY_DSN": {
"description": "The connection settings for Sentry",
"required": false
},
"SENTRY_LOG_LEVEL": {
"description": "The log level for Sentry",
"required": false
},
"SITEMAP_DOMAIN": {
"description": "The domain to be used in Hugo builds for fully qualified URLs in the sitemap",
"required": false
},
"SITE_NAME": {
"description": "Site name",
"required": false
},
"SOCIAL_AUTH_SAML_CONTACT_NAME": {
"description": "The SAML contact name for our app",
"required": false
},
"SOCIAL_AUTH_SAML_IDP_ATTRIBUTE_EMAIL": {
"description": "The IDP attribute for the user's email",
"required": false
},
"SOCIAL_AUTH_SAML_IDP_ATTRIBUTE_NAME": {
"description": "The IDP attribute for the user's name",
"required": false
},
"SOCIAL_AUTH_SAML_IDP_ATTRIBUTE_PERM_ID": {
"description": "The IDP attribute for the user's immutable ID",
"required": false
},
"SOCIAL_AUTH_SAML_IDP_ENTITY_ID": {
"description": "The SAML IDP entity ID",
"required": false
},
"SOCIAL_AUTH_SAML_IDP_URL": {
"description": "The SAML IDP URL",
"required": false
},
"SOCIAL_AUTH_SAML_IDP_X509": {
"description": "The SAML IDP x509 certificate",
"required": false
},
"SOCIAL_AUTH_SAML_LOGIN_URL": {
"description": "The URL to redirect the user to for SAML login",
"required": true
},
"SOCIAL_AUTH_SAML_ORG_DISPLAYNAME": {
"description": "The SAML Organization display name",
"required": false
},
"SOCIAL_AUTH_SAML_SECURITY_ENCRYPTED": {
"description": "If True, SMAL assertions should be encrypted",
"required": false
},
"SOCIAL_AUTH_SAML_SP_ENTITY_ID": {
"description": "",
"required": false
},
"SOCIAL_AUTH_SAML_SP_PRIVATE_KEY": {
"description": "The SAML private key",
"required": false
},
"SOCIAL_AUTH_SAML_SP_PUBLIC_CERT": {
"description": "The SAML public certificate",
"required": false
},
"STATIC_API_BASE_URL_TEST": {
"description": "The static api base url to use when building and deploying live sites locally to minio",
"required": false
},
"STATUS_TOKEN": {
"description": "Token to access the status API.",
"required": false
},
"THREEPLAY_API_KEY": {
"description": "3play api key",
"required": false
},
"THREEPLAY_CALLBACK_KEY": {
"description": "3play callback key",
"required": false
},
"THREEPLAY_PROJECT_ID": {
"description": "3play project id",
"required": false
},
"UPDATE_MISSING_TRANSCRIPT_FREQUENCY": {
"description": "The frequency to check for transcripts for published videos with blank transcripts",
"required": false
},
"UPDATE_TAGGED_3PLAY_TRANSCRIPT_FREQUENCY": {
"description": "The frequency to check for videos tagged as updated in 3play",
"required": false
},
"USE_X_FORWARDED_HOST": {
"description": "Set HOST header to original domain accessed by user",
"required": false
},
"USE_X_FORWARDED_PORT": {
"description": "Use the PORT from original url accessed by user",
"required": false
},
"VIDEO_S3_TRANSCODE_ENDPOINT": {
"description": "Endpoint to be used for AWS MediaConvert",
"required": false
},
"VIDEO_S3_TRANSCODE_PREFIX": {
"description": "Prefix to be used for S3 keys of files transcoded from AWS MediaConvert",
"required": false
},
"VIDEO_TRANSCODE_QUEUE": {
"description": "Name of MediaConvert queue to use for transcoding",
"required": false
},
"YT_ACCESS_TOKEN": {
"description": "Youtube access token",
"required": false
},
"YT_CATEGORY_ID": {
"description": "Default video category ID for youtube",
"required": false
},
"YT_CLIENT_ID": {
"description": "Youtube Client ID",
"required": false
},
"YT_CLIENT_SECRET": {
"description": "Youtube client secret key",
"required": false
},
"YT_FIELD_CAPTIONS": {
"description": "The site config metadata field for the caption url",
"required": false
},
"YT_FIELD_DESCRIPTION": {
"description": "The site config metadata field for YouTube description",
"required": false
},
"YT_FIELD_ID": {
"description": "The site config metadata field for YouTube ID",
"required": false
},
"YT_FIELD_SPEAKERS": {
"description": "The site config metadata field for YouTube speakers",
"required": false
},
"YT_FIELD_TAGS": {
"description": "The site config metadata field for YouTube video tags",
"required": false
},
"YT_FIELD_THUMBNAIL": {
"description": "The site config metadata field for YouTube thumbnail url",
"required": false
},
"YT_FIELD_TRANSCRIPT": {
"description": "The site config metadata field for the transcript url",
"required": false
},
"YT_PROJECT_ID": {
"description": "Youtube project ID",
"required": false
},
"YT_REFRESH_TOKEN": {
"description": "YT_REFRESH_TOKEN",
"required": false
},
"YT_STATUS_UPDATE_FREQUENCY": {
"description": "The frequency to check for status updates on uploaded youtube videos",
"required": false
},
"YT_UPLOAD_FREQUENCY": {
"description": "The frequency to check for videos to upload to Youtube",
"required": false
},
"YT_UPLOAD_LIMIT": {
"description": "Max Youtube uploads allowed per day",
"required": false
}
},
"keywords": ["Django", "Python", "MIT", "Office of Digital Learning"],
"name": "ocw_studio",
"repository": "https://github.com/mitodl/ocw-studio",
"scripts": {
"postdeploy": "./manage.py migrate --noinput"
},
"success_url": "/",
"website": "https://github.com/mitodl/ocw-studio"
}