mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-27 00:40:06 +00:00
docs: upgrade docusaurus, minor ingestion updates (#2774)
This commit is contained in:
parent
942196e3c1
commit
c05459b446
@ -15,9 +15,9 @@
|
|||||||
"lint-check": "prettier -l generateDocsDir.ts sidebars.js src/pages/index.js"
|
"lint-check": "prettier -l generateDocsDir.ts sidebars.js src/pages/index.js"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@docusaurus/core": "^2.0.0-beta.0",
|
"@docusaurus/core": "^2.0.0-beta.2",
|
||||||
"@docusaurus/plugin-ideal-image": "^2.0.0-beta.0",
|
"@docusaurus/plugin-ideal-image": "^2.0.0-beta.2",
|
||||||
"@docusaurus/preset-classic": "^2.0.0-beta.0",
|
"@docusaurus/preset-classic": "^2.0.0-beta.2",
|
||||||
"clsx": "^1.1.1",
|
"clsx": "^1.1.1",
|
||||||
"react": "^16.12.0",
|
"react": "^16.12.0",
|
||||||
"react-dom": "^16.12.0",
|
"react-dom": "^16.12.0",
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -19,7 +19,6 @@ The folks over at [Acryl Data](https://www.acryl.io/) maintain a PyPI package fo
|
|||||||
```shell
|
```shell
|
||||||
# Requires Python 3.6+
|
# Requires Python 3.6+
|
||||||
python3 -m pip install --upgrade pip wheel setuptools
|
python3 -m pip install --upgrade pip wheel setuptools
|
||||||
python3 -m pip uninstall datahub acryl-datahub || true # sanity check - ok if it fails
|
|
||||||
python3 -m pip install --upgrade acryl-datahub
|
python3 -m pip install --upgrade acryl-datahub
|
||||||
datahub version
|
datahub version
|
||||||
# If you see "command not found", try running this instead: python3 -m datahub version
|
# If you see "command not found", try running this instead: python3 -m datahub version
|
||||||
|
|||||||
@ -22,7 +22,7 @@ The architecture of this metadata ingestion framework is heavily inspired by [Ap
|
|||||||
```shell
|
```shell
|
||||||
../gradlew :metadata-ingestion:installDev
|
../gradlew :metadata-ingestion:installDev
|
||||||
source venv/bin/activate
|
source venv/bin/activate
|
||||||
datahub version # check that it works
|
datahub version # should print "version: unavailable (installed via git)"
|
||||||
```
|
```
|
||||||
|
|
||||||
### Common setup issues
|
### Common setup issues
|
||||||
@ -94,10 +94,10 @@ Also take a look at the guide to [adding a source](./adding-source.md).
|
|||||||
pip install -e '.[dev]'
|
pip install -e '.[dev]'
|
||||||
|
|
||||||
# Run unit tests.
|
# Run unit tests.
|
||||||
pytest tests/unit
|
pytest -m 'not slow'
|
||||||
|
|
||||||
# Run integration tests. Note that the integration tests require docker.
|
# Run Docker-based integration tests.
|
||||||
pytest tests/integration
|
pytest -m 'slow'
|
||||||
```
|
```
|
||||||
|
|
||||||
### Sanity check code before committing
|
### Sanity check code before committing
|
||||||
@ -111,5 +111,6 @@ mypy .
|
|||||||
pytest
|
pytest
|
||||||
|
|
||||||
# These steps are all included in the gradle build:
|
# These steps are all included in the gradle build:
|
||||||
|
../gradlew :metadata-ingestion:lintFix
|
||||||
../gradlew :metadata-ingestion:check
|
../gradlew :metadata-ingestion:check
|
||||||
```
|
```
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user