You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!--
Please read and fill out this form before submitting your PR.
Please make sure you have reviewed our contributors guide before
submitting your
first PR.
NOTE: PR titles should follow semantic commits:
https://www.conventionalcommits.org/en/v1.0.0/
-->
## Overview
<!--
Please provide an explanation of the PR, including the appropriate
context,
background, goal, and rationale. If there is an issue with this
information,
please provide a tl;dr and link the issue.
Ex: Closes #<issue number>
-->
Next, you'll need to initialize the Evolve CLI configuration by generating the `evolve.toml` file. This file is crucial for Evolve to understand the structure of your chain.
49
-
50
-
To create the `evolve.toml` configuration, use this command:
51
-
52
-
```bash
53
-
evolve toml init
54
-
```
55
-
56
-
This command sets up the `evolve.toml` file, where you can further customize configuration parameters as needed.
57
-
58
44
## Start Your Evolve App {#start-evolve-app}
59
45
60
46
Once everything is configured, you can start your Evolve-enabled CometBFT app or (simply evolve app). Use the following command to start your blockchain:
61
47
62
48
```bash
63
-
evolve start --evolve.aggregator <insert your flags>
49
+
<yourappd> start --evnode.aggregator <insert your flags>
64
50
```
65
51
66
52
## Summary
67
53
68
54
By following this guide, you've successfully converted your CometBFT app into an Evolve app.
69
55
70
56
To learn more about how to config your DA, Sequencing, and Execution, please check out those tutorial sections.
Copy file name to clipboardExpand all lines: docs/guides/deploy-overview.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,5 +15,3 @@ In this section, you'll see a few examples of how you can deploy your chain envi
15
15
:::warning Disclaimer
16
16
These examples are for educational purposes only. Before deploying your chain for production use you should fully understand the services you are deploying and your choice in deployment method.
17
17
:::
18
-
19
-
*[Deploy with Docker Compose](/docs/guides/deploy/local.md)
0 commit comments