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