Skip to content

Commit 2da77ed

Browse files
authored
Implement R1FS API (#166)
* feat: add r1fs_manager * minor: add const in admin pipeline * fix: rename r1fs manager plugin * wip: r1fs manager * feat: add get_file_base64 endpoint * minor: rename CSTORE api and add hset endpoints * feat: add enpoints to cstore manager api * feat: add streaming endpoints to r1fs manager api * fix: remove dead code from cstore and r1fs apis * chore: cleanup cstore mgr api * fix: remove token from cstore and r1fs api endpoints * fix: remove dead code * minor: add logging to cstore and r1fs api * fix: r1fs get_status * fix: add comments to cstore and r1fs APIs * chore: increment version * rename get_ipfs_id_data
1 parent 282bc24 commit 2da77ed

5 files changed

Lines changed: 560 additions & 167 deletions

File tree

constants.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,19 +75,21 @@
7575
},
7676
},
7777

78-
'CSTORE_MANAGER': {
79-
"NGROK_EDGE_LABEL": "$EE_NGROK_EDGE_LABEL_CSTORE_MANAGER",
80-
"CLOUDFLARE_TOKEN": "$EE_CLOUDFLARE_TOKEN_CSTORE_MANAGER",
81-
"TUNNEL_ENGINE": "$EE_TUNNEL_ENGINE",
78+
'CSTORE_MANAGER_API': {
8279
"PROCESS_DELAY": 0,
80+
'TUNNEL_ENGINE_ENABLED': False,
8381
},
84-
82+
8583
"TUNNELS_MANAGER": {
8684
"NGROK_EDGE_LABEL": "$EE_NGROK_EDGE_LABEL_TUNNELS_MANAGER",
8785
"CLOUDFLARE_TOKEN": "$EE_CLOUDFLARE_TOKEN_TUNNELS_MANAGER",
8886
"TUNNEL_ENGINE": "$EE_TUNNEL_ENGINE",
8987
},
9088

89+
'R1FS_MANAGER_API': {
90+
"PROCESS_DELAY": 0,
91+
'TUNNEL_ENGINE_ENABLED': False,
92+
}
9193
}
9294

9395

extensions/business/cstore/cstore_manager.py

Lines changed: 0 additions & 161 deletions
This file was deleted.

0 commit comments

Comments
 (0)