https://github.com/cafebedouin/sigmanauts
Sigmanaut website
https://github.com/cafebedouin/sigmanauts
Last synced: 6 days ago
JSON representation
Sigmanaut website
- Host: GitHub
- URL: https://github.com/cafebedouin/sigmanauts
- Owner: cafebedouin
- License: cc0-1.0
- Created: 2023-04-24T23:41:44.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-29T18:54:26.000Z (7 days ago)
- Last Synced: 2025-04-29T19:48:09.015Z (7 days ago)
- Language: HTML
- Size: 5.57 MB
- Stars: 1
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ergo - Sigmanauts Community Site Code - Code for the Sigmanauts community website. *(Community)* | [Rustinmyeye Fork](https://github.com/rustinmyeye/sigmanauts) (🤝 Community & Resources <a id="community--resources"></a> / 🔩 Utilities <a id="utilities"></a>)
README
# sigmanauts.com
This repository serves two purposes:
1. It is the official repository of Ergo's Sigmanaut program, which will eventually become a decentralized, autonomous organization.
2. There will be a general need for DAOs on ERGO to have a turn-key solution to create a website and manage important documents, proposals and other information relevant to the DAO. By cloning this repository and making a few modifications using [markdown](https://en.wikipedia.org/wiki/Markdown), new organizations can launch a website on github.io without a need to buy a server, design a website, etc.
## Modifying the site
To add information, functionality or to reuse this website for your purposes:
1. [Install Hugo](https://gohugo.io/installation/) on your operating system.
2. If not already installed, [install git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git).
3. If you do not already have a github account, [sign-up for one](https://docs.github.com/en/get-started/signing-up-for-github/signing-up-for-a-new-github-account).
4. [Fork](https://docs.github.com/en/get-started/quickstart/fork-a-repo) this [repository](https://github.com/cafebedouin/sigmanauts).
5. Make the changes you want to add. This will typically involve one or more of the following:* Changing menus on the main page, by changing config.toml
* Changing the logo, change both config.toml and add logo to /public/img/new_logo.png (square dimensions)
* Adding a page under /content/new_file.md
6. Preview changes after making them on your computer:* $ hugo -D server
* View in web browser, typically at: [http://localhost:1313](http://localhost:1313)
7. Once you have checked the changes, you can create a pull request using git. From the command line it might look like the following sequence of commands:* $ git fetch (updates your repo)
* $ git pull (gets new files)
* $ git status (shows your changes)
* $ git add filename(s)
* $ git commit -m "Explain what you have done."
* $ git push (sends changes to your forked repo)8. Once the changes are in your repository, you can then, either:
1. Create a pull request to have your changes added to the original repository, or
2. Use this template to create a new community website of your ownFor those using this repository to create their own site, consult Hugo's [Host on Github](https://docs.github.com/en/pages/quickstart) guide for creating your own site.