# digitalcash.dev
**Repository Path**: mirrors_coolaj86/digitalcash.dev
## Basic Information
- **Project Name**: digitalcash.dev
- **Description**: APIs, RPCs, etc for Merchants & Developers using Digital Cash (DASH)
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2024-08-10
- **Last Updated**: 2026-05-17
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# digitalcash.dev
Good News: Your blog is ready!
[github-io]: https://digitalcashdev.github.io/digitalcash.dev
[bliss-new]: https://bliss.js.org/#/?o=digitalcashdev&r=digitalcash.dev&b=main&ght
[gh-settings-pages]: https://github.com/digitalcashdev/digitalcash.dev/settings/pages
[gh-actions]: https://github.com/digitalcashdev/digitalcash.dev/actions
[content-dir]: /content/blog/
[utterances-app]: https://github.com/apps/utterances
[gh-issues]: https://github.com/digitalcashdev/digitalcash.dev/issues
## Just a few steps to **Finish Up**:
1. Enable **GitHub Pages**
- Visit [github.com/digitalcashdev/digitalcash.dev/settings/pages][gh-settings-pages]
- Select Source Branch: gh-pages
- Select / (root) (default)
- Save
2. **Create your First Post**
- Visit [bliss.js.org][bliss-new] to make your first post.
- [bliss.js.org/#/?o=digitalcashdev&r=digitalcash.dev&b=main&ght][bliss-new]
3. **Enable Comments** (optional)
- Visit [github.com/apps/utterances][utterances-app]
- Click Install
- Select digitalcashdev and digitalcash.dev
- You're all set! Comments will become [issues][gh-issues] on _this_ repo!
- To **disable** comments, comment out `utterences_*` in `config.yaml`
## View Blog
You can view your blog at [digitalcashdev.github.io/digitalcash.dev][github-io].
## New Post
Create New Post
You can make new blog posts as easy as Gists. Just write your ~~tweet~~ post,
and Bliss will fill out the Front Matter for you.
1. 🔎 Type bli in your browser's omnibar and hit enter (assuming you followed the steps above).
- (or visit [bliss.js.org][bliss-new] directly)
2. 📝 Write your post
3. 💾 Click Add to Github, and then Commit new file
Your new post will build automatically.
Want to **Learn Markdown**? Check out [The Complete GitHub Markdown Cheat Sheet](https://github.com/BeyondCodeBootcamp/beyondcodebootcamp/blob/main/001-Markdown-Cheat-Sheet.md).
## Edit Post
Manage your existing posts directly on GitHub. \
Don't worry, `.GitInfo.lastmod` will pull the new "updated at" date from `git`!
> [/content/blog/][content-dir]
Just click edit, then edit and commit!
# Manual Builds
It's always nice to know that when the 💩 hits the fan, you can still get 💩
done all on your own.
1. Edit `config.yaml` to taste... \
or `bash ./scripts/ga-template.sh`.
2. Install `hugo` and `node` via Webi:
```bash
curl -sS https://webinstall.dev/hugo@v0.86 | bash
curl -sS https://webinstall.dev/node@v16 | bash
# or
# bash ./scripts/install-deps.sh
```
3. Clone and setup repo
```bash
git clone git@github.com:digitalcashdev/digitalcash.dev
pushd ./digitalcash.dev
git submodule init
git submodule update
hugo
# or
# bash ./scripts/build.sh
```
4. Inspect the build
```bash
ls ./public
```
5. Deploy to GitHub pages
```bash
git checkout gh-pages
rsync -avhP public/ ./
rm -rf public/
git add ./
git commit -m "deploy: latest build"
git push
# or
# bash ./scripts/deploy.sh
```
## Troubleshooting
**Don't see `gh-pages`?**
Generally the Use this template process takes about 30s. You check to
see if it's complete at [github.com/digitalcashdev/digitalcash.dev/actions][gh-actions].
Once the Action finishes it may take up to 5 minutes for the first Pages deploy
to complete.
**Something else wrong?**
Open an issue on .