mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-11-27 13:36:50 +01:00
Merge pull request #22 from jonbesga/master
Add several changes to ease contribution
This commit is contained in:
commit
a36e2fe46d
11
.gitignore
vendored
Normal file
11
.gitignore
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
# Ignore all bazel-* symlinks. There is no full list since this can change
|
||||
# based on the name of the directory bazel is cloned into.
|
||||
/bazel-*
|
||||
node_modules/
|
||||
__pycache__/
|
||||
|
||||
# Telethon session files
|
||||
*.session
|
||||
|
||||
# IPFS collection for Cognitron
|
||||
bafykbzacebzohi352bddfunaub5rgqv5b324nejk5v6fltjh45be5ykw5jsjg/
|
@ -17,7 +17,7 @@ into [`internal Protobuf format`](nexus/models) and to landing converted data in
|
||||
|
||||
#### System Compilers
|
||||
```shell script
|
||||
sudo apt-get install -y --no-install-recommends g++ python3.9 protobuf-compiler libprotobuf-dev
|
||||
sudo apt-get install -y --no-install-recommends g++ python3.9 protobuf-compiler libprotobuf-dev libev-perl
|
||||
```
|
||||
|
||||
#### Bazel Build System
|
||||
|
@ -179,6 +179,9 @@ node_repositories(
|
||||
node_repositories = {
|
||||
"15.5.1-darwin_amd64": ("node-v15.5.1-darwin-x64.tar.gz", "node-v15.5.1-darwin-x64", "4507dab0481b0b5374b5758b1eba7d105c8cbcb173548119b04d9ef7d9f1d40f"),
|
||||
"15.5.1-linux_amd64": ("node-v15.5.1-linux-x64.tar.xz", "node-v15.5.1-linux-x64", "dbc41a611d99aedf2cfd3d0acc50759a6b9084c7447862e990f51958d4a7aa41"),
|
||||
"15.5.1-windows_amd64": ("node-v15.5.1-win-x64.zip", "node-v15.5.1-win-x64", "e1f826f9647fc7058b48c669991956a427fe4b6ccefa415a18b41715483f958d"),
|
||||
"15.5.1-linux_s390x": ("node-v15.5.1-linux-s390x.tar.gz", "node-v15.5.1-linux-s390x", "e05f949ea11e2aafc08a7972c0f41a11a3628762e857d44965e0605d3bcd143f"),
|
||||
"15.5.1-linux_arm64": ("node-v15.5.1-linux-arm64.tar.gz", "node-v15.5.1-linux-arm64", "a2d14db86c6f8a070f227940ea44a3409966f6bed14df0ec6f676fe2e2f601c9"),
|
||||
},
|
||||
node_version = "15.5.1",
|
||||
package_json = ["//rules/nodejs:package.json"],
|
||||
|
@ -41,7 +41,6 @@ py3_image(
|
||||
requirement("aiokit"),
|
||||
"//library/configurator",
|
||||
"//library/logging",
|
||||
,
|
||||
"//library/telegram",
|
||||
"//nexus/hub/aioclient",
|
||||
"//nexus/meta_api/aioclient",
|
||||
|
@ -12,7 +12,7 @@ def maven_fetch_remote_artifacts():
|
||||
artifacts = [
|
||||
"com.fasterxml.jackson.core:jackson-core:2.11.2",
|
||||
"com.fasterxml.jackson.core:jackson-databind:2.11.2",
|
||||
"org.apache.pdfbox:pdfbox:2.0.20",
|
||||
"org.apache.pdfbox:pdfbox:2.0.23",
|
||||
"org.apache.kafka:kafka_2.13:2.6.0",
|
||||
"org.apache.kafka:kafka-clients:2.6.0",
|
||||
"org.grobid:grobid-core:0.6.1",
|
||||
|
@ -81,8 +81,8 @@ def rules_misc_setup_internal():
|
||||
http_file(
|
||||
name = "pdfbox",
|
||||
downloaded_file_path = "pdfbox.jar",
|
||||
sha256 = "5300b92552cb6bd13a9c87ff36d1394382427e101ae2b0b02a9d9e5fd257db65",
|
||||
urls = ["https://mirror.linux-ia64.org/apache/pdfbox/2.0.20/pdfbox-app-2.0.20.jar"],
|
||||
sha256 = "4485d9e6713f5b9c93824a0eb54e57717d3fd736244734c6276b65e17eab5cae",
|
||||
urls = ["https://mirror.linux-ia64.org/apache/pdfbox/2.0.23/pdfbox-app-2.0.23.jar"],
|
||||
)
|
||||
|
||||
http_archive(
|
||||
|
@ -62,7 +62,7 @@ idna==2.10
|
||||
isort==5.8.0
|
||||
itsdangerous==1.1.0
|
||||
izihawa_types==0.1.0
|
||||
izihawa_utils==0.2.1
|
||||
izihawa_utils==0.3.0
|
||||
Jinja2==2.11.3
|
||||
jupyter==1.0.0
|
||||
kazoo==2.8.0
|
||||
|
Loading…
Reference in New Issue
Block a user