2.6 KiB
2.6 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 uri somewhere handy (you will need it when you start the server)
- the uri should be in the form
mysql://user:pass@host:port/dbname
- the uri should be in the form
- 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
- to start the server, from your command line run
node speech.js
while passing three environmental variables:- (1) your lbry wallet address (
LBRY_CLAIM_ADDRESS
), - (2) your mysql connection uri (
MYSQL_CONNECTION_STRING
), - (3) the environment to run (
NODE_ENV
). - i.e.
LBRY_CLAIM_ADDRESS=<your wallet address here> MYSQL_CONNECTION_STRING=<your connection uri here> NODE_ENV=development node speech.js
- e.g.
LBRY_CLAIM_ADDRESS=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX MYSQL_CONNECTION_STRING=mysql://root:XXXXXX@localhost:3306/lbry NODE_ENV=development node speech.js
- To run hot, use
nodemon
instead ofnode
- (1) your lbry wallet address (
- visit localhost:3000
API
GET
- /api/resolve/:name
- a successfull request returns the resolve results for the claim at that name in JSON format
- /api/claim_list/:name
- a successfull request returns a list of claims at that claim name in JSON format
- /api/isClaimAvailable/:name
- a successfull request returns a boolean:
true
if the name is still available,false
if the name has already been published to by spee.ch.
- a successfull request returns a boolean:
POST
- /api/publish
- request parameters:
- body (form-data):
- name: string (optional)
- defaults to the file's name, sans extension
- names can only contain the following characters:
A-Z
,a-z
,_
, or-
- license: string (optional)
- defaults to "No License Provided"
- only "Public Domain" or "Creative Commons" licenses are allowed
- nsfw: string, number, or boolean (optional)
- defaults
true
- nsfw can be a string ("on"/"off"), number (0 or 1), or boolean (
true
/false
)
- defaults
- name: string (optional)
- files:
- the
files
object submitted must use "speech" or "null" as the key for the file's value object
- the
- body (form-data):
- a successfull request will return the transaction details resulting from your published claim in JSON format
- request parameters:
bugs
If you find a bug or experience a problem, please report your issue here on github and find us in the lbry slack!