-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 🚀 Updated devcontainer to use pre-built Python image, added dep…
…endabot for devcontainers, and made enhancements to docs and notebooks - Devcontainer now uses a pre-built Microsoft Python image for efficiency. - Introduced a Dependabot configuration to keep devcontainer dependencies up to date automatically. - Removed local Dockerfile in favor of using the pre-built image, streamlining setup. - Added a Makefile to automate environment setup and dependency installation for development. - Updated README to better describe the project's goals and community contributions. - Improved FAQ section in the documentation for clarity and user engagement. - Simplified ROADMAP document, focusing on critical milestones for open data collaboration. - Adjusted notebooks to demonstrate updated dataset handling and catalog interaction, reflecting the latest frictionless data practices. - Added Hugging Face Hub to the list of requirements to support dataset sharing and versioning initiatives.
- Loading branch information
1 parent
9848f75
commit 9e56a43
Showing
10 changed files
with
93 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
{ | ||
"name": "Datasets", | ||
"build": { | ||
"dockerfile": "../Dockerfile", | ||
"context": ".." | ||
} | ||
"name": "Datonic Hub", | ||
"image": "mcr.microsoft.com/devcontainers/python:1-3.12-bullseye" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "devcontainers" | ||
directory: "/" | ||
schedule: | ||
interval: weekly |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
venv: | ||
@command -v uv >/dev/null 2>&1 || pip install -U uv | ||
uv venv | ||
uv pip install -U -r requirements.txt | ||
. .venv/bin/activate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.