Skip to content

Commit

Permalink
Merge pull request #22 from StauroDEV/w3s-bump
Browse files Browse the repository at this point in the history
feat: use new w3s platform, update docs, use minicar
  • Loading branch information
talentlessguy authored Jan 10, 2024
2 parents 411d90e + c65d87f commit b826bbb
Show file tree
Hide file tree
Showing 24 changed files with 834 additions and 807 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
<img src="logo.png" height="200" width="200" />
<h1>Blumen</h1>

[![CI](https://github.com/StauroDEV/blumen/actions/workflows/ci.yml/badge.svg)](https://github.com/StauroDEV/blumen/actions/workflows/ci.yml) ![npm](https://img.shields.io/npm/dt/blumen?style=for-the-badge&logo=npm&color=%232B4AD4&label)
[![GitHub Workflow
Status][gh-actions-img]][github-actions] ![npm](https://img.shields.io/npm/dt/blumen?style=for-the-badge&logo=npm&color=%232B4AD4&label)

<sub>Self-custodial decentralized deployments</sub>
</div>
Expand All @@ -15,10 +16,14 @@
## Features

- **Multi-Provider Deployment**: Deploy your web app simultaneously on multiple IPFS providers, including [web3.storage](https://web3.storage) and [Gateway3](https://gateway3.io), ensuring redundancy and availability.
- **Multi-Provider Deployment**: Deploy your web app simultaneously on multiple IPFS providers, including [web3.storage](https://web3.storage) and [Gateway3](https://gw3.io), ensuring redundancy and availability.
- **ENS Integration**: Seamlessly integrate with [ENS](https://ens.domains) to update your Content-Hash, making it easier for users to access your web app via ENS gateways.
- **Safe Integration**: Update your ENS Content-Hash using a multisig [Safe](https://safe.global) contract, adding an extra layer of security and decentralization.

## Docs

Read the [docs](https://blumen.stauro.xyz).
Read the [docs](https://blumen.stauro.xyz).


[github-actions]: https://github.com/StauroDEV/blumen/actions
[gh-actions-img]: https://img.shields.io/github/actions/workflow/status/StauroDEV/blumen/ci.yml?branch=main&style=for-the-badge&logo=github&label=&color=%232B4AD4
8 changes: 7 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import stylistic from '@stylistic/eslint-plugin'
import tsParser from '@typescript-eslint/parser'
import ts from '@typescript-eslint/eslint-plugin'
import globals from 'globals'
import js from '@eslint/js'

Expand All @@ -20,8 +21,13 @@ export default [
ecmaVersion: 'latest',
},
},
plugins: {
'@typescript-eslint': ts,
ts,
},
rules: {
'no-unused-vars': 'off',
...ts.configs['eslint-recommended'].rules,
...ts.configs['recommended'].rules,
'@stylistic/max-len': ['error', { code: 120 }],
'no-var': 'error',
},
Expand Down
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,25 @@
"@ensdomains/content-hash": "^3.0.0",
"@ipld/unixfs": "^2.1.2",
"@stauro/filebase-upload": "^0.0.7",
"@stauro/minicar": "^0.0.0",
"@stauro/piggybank": "^0.0.5",
"@ucanto/core": "^9.0.1",
"@ucanto/principal": "^9.0.0",
"@web3-storage/w3up-client": "^12.0.0",
"ascii-bar": "^1.0.3",
"cac": "^6.7.14",
"cborg": "^4.0.5",
"colorette": "^2.0.20",
"globby": "^14.0.0",
"multiformats": "^12.1.3",
"multiformats": "^13.0.0",
"table": "^6.8.1",
"viem": "^1.19.9"
},
"devDependencies": {
"@eslint/js": "^8.54.0",
"@stylistic/eslint-plugin": "^1.4.1",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"globals": "^13.23.0",
Expand Down
Loading

0 comments on commit b826bbb

Please sign in to comment.