diff --git a/SciPost_v1/settings/local_JSC.py b/SciPost_v1/settings/local_JSC.py
new file mode 100644
index 0000000000000000000000000000000000000000..f4dcbe1891cd9a9b8ba42739749f2528e168a2f0
--- /dev/null
+++ b/SciPost_v1/settings/local_JSC.py
@@ -0,0 +1,13 @@
+from .base import *
+
+# THE MAIN THING HERE
+DEBUG = True
+
+# Static and media
+STATIC_ROOT = '/Users/jscaux/Sites/SciPost.org/scipost_v1/local_files/static/'
+MEDIA_ROOT = '/Users/jscaux/Sites/SciPost.org/scipost_v1/local_files/media/'
+WEBPACK_LOADER['DEFAULT']['BUNDLE_DIR_NAME'] =\
+    '/Users/jscaux/Sites/SciPost.org/scipost_v1/local_files/static/bundles/'
+
+MAILCHIMP_API_USER = get_secret("MAILCHIMP_API_USER")
+MAILCHIMP_API_KEY = get_secret("MAILCHIMP_API_KEY")
diff --git a/production/constants.py b/production/constants.py
index 63d9f65fef9e6df30ea6af26cb5767a5fa46bec8..0a0b7ec8a445d3f04da78430cf52f28a55930147 100644
--- a/production/constants.py
+++ b/production/constants.py
@@ -12,6 +12,7 @@ PRODUCTION_EVENTS = (
     ('message_supervisor_to_officer', 'Message from Supervisor to Officer'),
     ('message_officer_to_supervisor', 'Message from Officer to Supervisor'),
     ('proofs_produced', 'Proofs have been produced'),
+    ('proofs_checked_by_supervisor', 'Proofs have been checked by Supervisor'),
     ('proofs_sent_to_authors', 'Proofs sent to Authors'),
     ('proofs_returned_by_authors', 'Proofs returned by Authors'),
     ('corrections_implemented', 'Corrections implemented'),
diff --git a/production/migrations/0003_auto_20170522_1021.py b/production/migrations/0003_auto_20170522_1021.py
new file mode 100644
index 0000000000000000000000000000000000000000..b3ad736e99a30f24eb8fd4ace5dc7e96499d1b3d
--- /dev/null
+++ b/production/migrations/0003_auto_20170522_1021.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.10.3 on 2017-05-22 08:21
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('production', '0002_auto_20170517_1942'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='productionevent',
+            name='event',
+            field=models.CharField(choices=[('assigned_to_supervisor', 'Assigned by EdAdmin to Supervisor'), ('message_edadmin_to_supervisor', 'Message from EdAdmin to Supervisor'), ('message_supervisor_to_edadmin', 'Message from Supervisor to EdAdmin'), ('officer_tasked_with_proof_production', 'Supervisor tasked officer with proofs production'), ('message_supervisor_to_officer', 'Message from Supervisor to Officer'), ('message_officer_to_supervisor', 'Message from Officer to Supervisor'), ('proofs_produced', 'Proofs have been produced'), ('proofs_checked_by_supervisor', 'Proofs have been checked by Supervisor'), ('proofs_sent_to_authors', 'Proofs sent to Authors'), ('proofs_returned_by_authors', 'Proofs returned by Authors'), ('corrections_implemented', 'Corrections implemented'), ('authors_have_accepted_proofs', 'Authors have accepted proofs')], max_length=64),
+        ),
+    ]