Skip to content

Commit

Permalink
remove use_calibration, add yaml to mimetypes
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Jan 14, 2025
1 parent 4ef2163 commit 31d4f8c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 4 additions & 0 deletions workspace/scripts/08-install-pioreactorui.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,7 @@ flask --help
lighttpd -h
huey_consumer -h


# install yaml
echo "application/yaml yaml yml" | sudo tee -a /etc/mime.types

3 changes: 0 additions & 3 deletions workspace/scripts/files/pioreactor/config.example.ini
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ pd_reference_ema=0.9
# populate with your local AC frequency (typically 50 or 60) to get slightly reduced noise. Inferred from data otherwise.
# local_ac_hz=

# use the most recent calibration file, if available
use_calibration=1

# apply a smoothing penalizer
smoothing_penalizer=700.0

Expand Down
4 changes: 2 additions & 2 deletions workspace/scripts/files/sql/create_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ CREATE TABLE IF NOT EXISTS logs (
) ON DELETE CASCADE
);

CREATE INDEX idx_logs_experiment_timestamp
CREATE INDEX IF NOT EXISTS idx_logs_experiment_timestamp
ON logs (experiment, timestamp);

CREATE INDEX idx_logs_experiment_unit
CREATE INDEX IF NOT EXISTS idx_logs_experiment_unit
ON logs (experiment, pioreactor_unit);


Expand Down

0 comments on commit 31d4f8c

Please sign in to comment.