From 689ef6d4b9b2b9a6ab1a6236ed74f6f8a4a9bea4 Mon Sep 17 00:00:00 2001 From: David Rodriguez Date: Tue, 30 Apr 2024 16:48:30 -0400 Subject: [PATCH] Editing instructions and codespace code to refer to the file as SIMPLE.sqlite --- .devcontainer/devcontainer.json | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 420212b..7d746b2 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -11,7 +11,7 @@ "forwardPorts": [8000], // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "pip install -r requirements.txt && wget -O SIMPLE.db https://raw.githubusercontent.com/SIMPLE-AstroDB/SIMPLE-binary/main/SIMPLE.db && python -m simple_app.app_simple -d" + "postCreateCommand": "pip install -r requirements.txt && wget -O SIMPLE.sqlite https://raw.githubusercontent.com/SIMPLE-AstroDB/SIMPLE-binary/main/SIMPLE.sqlite && python -m simple_app.app_simple -d" // Configure tool-specific properties. // "customizations": {}, diff --git a/README.md b/README.md index fb32356..aee796e 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ conda env create -f environment.yml ### Refresh the database Get a fresh copy of the database from the binary repo. ```bash -wget https://raw.githubusercontent.com/SIMPLE-AstroDB/SIMPLE-binary/main/SIMPLE.db +wget https://raw.githubusercontent.com/SIMPLE-AstroDB/SIMPLE-binary/main/SIMPLE.sqlite ``` ### Running