1.9 KiB
1.9 KiB
spee.ch
spee.ch is a single-serving site that reads and publishes images and videos to and from the LBRY blockchain.
how to run this repository locally
- start mysql
- install mysql
- create a database called
lbry
- save your connection
username
andpassword
someplace handy
- start lbrynet daemon
- install the
lbry
daemon - start the
lbry
daemon
- install the
- start spee.ch-sync
- install and run this
speech-sync
tool
- install and run this
- start spee.ch
- clone this repo
- run
npm install
- create your
speechConfig.js
file- copy
speechConfig_example.js
and name itspeechConfig.js
- replace the
null
values in the config file with the appropriate values for your environement
- copy
- to start the server, from your command line run
node speech.js
- To run hot, use
nodemon
instead ofnode
- To run hot, use
- visit localhost:3000
API
GET
- /api/resolve/:name
- example:
curl https://spee.ch/api/resolve/doitlive
- example:
- /api/claim_list/:name
- example:
curl https://spee.ch/api/claim_list/doitlive
- example:
- /api/isClaimAvailable/:name (returns
true
/false
for whether a name is available through spee.ch)- example:
curl https://spee.ch/api/isClaimAvailable/doitlive
- example:
POST
- /api/publish
- example:
curl -X POST -F 'name=MyPictureName' -F 'file=@/path/to/myPicture.jpeg' https://spee.ch/api/publish
- Parameters:
name
file
(.mp4, .jpeg, .jpg, .gif, or .png)nsfw
(optional)license
(optional)title
(optional)description
(optional)thumbnail
url to thumbnail image, for .mp4 uploads only (optional)channelName
(optional)channelPassword
(optional,; required ifchannelName
is provided)
- example:
bugs
If you find a bug or experience a problem, please report your issue here on github and find us in the lbry slack!