diff --git a/async_db/db/README.md b/async_db/db/README.md index 7f3210fe..42b3494b 100644 --- a/async_db/db/README.md +++ b/async_db/db/README.md @@ -2,5 +2,4 @@ This directory includes weather information obtained from NOAA for NYC Central P # Setup Instructions -Set up a sqlite3 database by executing the setup_db.sh file: ``bash sqlite_db.sh`` - +Set up a sqlite3 database by executing the setup_db.sh file: `bash sqlite_db.sh` diff --git a/async_db/db/setup_db.sh b/async_db/db/setup_db.sh index 85149574..41b73f89 100755 --- a/async_db/db/setup_db.sh +++ b/async_db/db/setup_db.sh @@ -1,2 +1,3 @@ -sqlite3 weather.db < db/db.sql ; \ -sqlite3 -csv weather.db ".import db/nyc_centralpark_weather.csv nyc_weather" +#!/usr/bin/env bash +sqlite3 weather.db < db.sql +sqlite3 -csv weather.db ".import nyc_centralpark_weather.csv nyc_weather" diff --git a/tls/README.md b/tls/README.md index 3ca48a79..e2779a38 100644 --- a/tls/README.md +++ b/tls/README.md @@ -12,5 +12,5 @@ cargo run (or ``cargo watch -x run``) ### web client -- curl: ``curl -v https://127.0.0.1:8443/index.html --compress -k`` -- browser: [https://127.0.0.1:8443/index.html](https://127.0.0.1:8080/index.html) +- curl: ``curl -v https://127.0.0.1:8443/index.html --compressed -k`` +- browser: [https://127.0.0.1:8443/index.html](https://127.0.0.1:8443/index.html)