From 6f97064ec71fc7aa284b1a28dfa1139606314e25 Mon Sep 17 00:00:00 2001 From: Benjamin Mako Hill Date: Mon, 5 Jan 2026 12:32:32 +0900 Subject: [PATCH] moved configuration file into data subdir to avoid commiting it --- configuration.json | 17 +---------------- data/configuration.json | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 16 deletions(-) mode change 100644 => 120000 configuration.json create mode 100644 data/configuration.json diff --git a/configuration.json b/configuration.json deleted file mode 100644 index 4ea79ab..0000000 --- a/configuration.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "roster_file" : "data/FIXME.csv", - "roster_unique_rowname" : "StudentNo", - "roster_firstname_rowname" : "FirstName", - "roster_lastname_rowname" : "LastName", - "student_info_file" : "data/student_information.tsv", - "student_info_gsheet_id" : "FIXME", - "student_info_gsheet_gid" : 99999999, - "optout_file" : "data/optout_poll_data.tsv", - "optout_gsheet_id" : "FIXME", - "optout_gsheet_gid" : 99999999, - "daily_calllist_file" : "data/call_list-{date}.tsv", - "daily_attendance" : "data/attendance-{date}.tsv", - "unique_name_rowname" : "Your UW student number", - "preferred_name_rowname" : "Name you'd like to go by in class" -} diff --git a/configuration.json b/configuration.json new file mode 120000 index 0000000..f0a7cee --- /dev/null +++ b/configuration.json @@ -0,0 +1 @@ +data/configuration.json \ No newline at end of file diff --git a/data/configuration.json b/data/configuration.json new file mode 100644 index 0000000..4ea79ab --- /dev/null +++ b/data/configuration.json @@ -0,0 +1,16 @@ +{ + "roster_file" : "data/FIXME.csv", + "roster_unique_rowname" : "StudentNo", + "roster_firstname_rowname" : "FirstName", + "roster_lastname_rowname" : "LastName", + "student_info_file" : "data/student_information.tsv", + "student_info_gsheet_id" : "FIXME", + "student_info_gsheet_gid" : 99999999, + "optout_file" : "data/optout_poll_data.tsv", + "optout_gsheet_id" : "FIXME", + "optout_gsheet_gid" : 99999999, + "daily_calllist_file" : "data/call_list-{date}.tsv", + "daily_attendance" : "data/attendance-{date}.tsv", + "unique_name_rowname" : "Your UW student number", + "preferred_name_rowname" : "Name you'd like to go by in class" +}