-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Delete GO CLI main * Remove unused configuration files for CLI * Remove useless SC wasm * Remove website management functions from website pkg * Refactor Taskfile to streamline build and run tasks for server and remove CLI references * Remove unused dependencies from go.mod and go.sum * Fix build workflow * Update READMEs * Update CLI README for improved formatting and clarity
- Loading branch information
1 parent
e5c04fd
commit 4e866ac
Showing
17 changed files
with
91 additions
and
1,072 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# DeWeb Server | ||
|
||
DeWeb Server allows users to access websites stored on-chain through a web browser. It is also used by providers to allow any user from any platform to access the websites they have uploaded on-chain. | ||
|
||
## Getting Started | ||
|
||
### Prerequisites | ||
|
||
Ensure you have `task` installed. Follow the instructions [here](https://taskfile.dev/installation/). | ||
|
||
### Installation | ||
|
||
1. Install required tools: | ||
|
||
```bash | ||
task install | ||
``` | ||
|
||
2. Generate: | ||
|
||
```bash | ||
task generate | ||
``` | ||
|
||
3. Build the server binary: | ||
|
||
```bash | ||
task build | ||
``` | ||
|
||
4. The binary will be stored in the `./build` directory. | ||
|
||
## Usage | ||
|
||
You can find the usage instructions for DeWeb Server in the [DeWeb Server documentation](https://docs.massa.net/docs/deweb/local-server-config/server-config). |
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.