https://github.com/rohenaz/dtvcash
Video-centric memo protocol implementation
https://github.com/rohenaz/dtvcash
Last synced: 2 months ago
JSON representation
Video-centric memo protocol implementation
- Host: GitHub
- URL: https://github.com/rohenaz/dtvcash
- Owner: rohenaz
- License: mit
- Created: 2018-05-19T12:02:19.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-09T15:59:21.000Z (almost 7 years ago)
- Last Synced: 2025-01-22T10:12:43.693Z (4 months ago)
- Language: Go
- Homepage:
- Size: 1.54 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Memo
### Prerequisites
- MySQL
- Memcache
- Bitcoin node (ABC, Unlimited, etc)### Setup
- Get repo
```sh
go get github.com/rohenaz/dtvcash/...
```- Create config.yaml
```yaml
MYSQL_HOST: 127.0.0.1
MYSQL_USER: memo_user
MYSQL_PASS: memo_password
MYSQL_DB: memo
MEMCACHE_HOST: 127.0.0.1
MEMCACHE_PORT: 11211
BITCOIN_NODE_HOST: 127.0.0.1
BITCOIN_NODE_PORT: 8333
```### Running
```sh
cd memo
go build# Run node
./memo main-node# Separately run web server
./memo web --insecure
```### Notes
- Can take about 30 minutes for main-node to full sync
- Main node can sometimes disconnect while syncing, just restart
- You may see a few errors, these are mal-formed memos and can be ignored### View
Visit `http://127.0.0.1:8261` in your browser