Recursive Manifesto
Inscirbe your manifesto by downloading the manifesto.html
file here and inscribing it.
Check if your manifesto inscription is valid by running the validation script
node validate_manifesto.js <inscription_ID>
You can run this in a codespace
Once you verify your inscription make a PR with your inscription Id by adding it to the collection.json
- Make a new unique branch-name
git checkout -b add-new-inscription
- add your
inscriptionId
to thecollection.json
file
{"inscriptionId": "8cb9a7f93677cc17a9f15acdd36ff368bf4efbf9cba6b77922c401f137e38025i0"},
Save and close the file when you're done.
- Stage your changes:
After making your changes, you need to stage them for commit. You can do this using the git add
command:
git add collection.json
- Commit your changes:
Now, you can commit your staged changes using the git commit command:
git commit -m "Add new inscription ID"
- Push your changes:
Next, push your changes to GitHub using the git push
command:
use the branch-name you used in step 1
git push origin branch-name
- Create a pull request:
gh pr create --title "Add new inscription ID" --body "This PR adds a new inscription ID to the manifestos.json file."