spee.ch/README.md

60 lines
2.7 KiB
Markdown
Raw Normal View History

2017-05-24 20:10:51 +02:00
# spee.ch
spee.ch is a single-serving site that reads and publishes images to and from the [LBRY](https://lbry.io/) blockchain.
2017-03-29 19:28:35 +02:00
2017-06-05 19:50:13 +02:00
## how to run this repository locally
* start lbry
2017-06-20 05:25:40 +02:00
* install the [`lbry`](https://github.com/lbryio/lbry) daemon (v0.13.1 or higher)
* start the `lbry` daemon
* 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`
* clone this repo
* customize `config/develpment.json` by replacing the value of `Database.PublishUploadPath` with a string representing the local path where you want uploaded files to be stored.
* run `npm install`
* to start the server, from your command line run `node server.js` while passing three environmental variables: your lbry wallet address (`LBRY_WALLET_ADDRESS`), your mysql connection uri (`MYSQL_CONNECTION_STRING`), and the environment to run (`NODE_ENV`).
* i.e. `LBRY_WALLET_ADDRESS=<your wallet address here> MYSQL_CONNECTION_STRING=<your connection uri here> NODE_ENV=development node server.js`
* e.g. `LBRY_WALLET_ADDRESS=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX MYSQL_CONNECTION_STRING=mysql://root:XXXXXX@localhost:3306/lbry NODE_ENV=development node server.js`
* To run hot, use `nodemon` instead of `node`
2017-06-05 19:50:13 +02:00
* visit [localhost:3000](http://localhost:3000)
2017-03-29 19:28:35 +02:00
## site navigation
2017-06-01 05:29:16 +02:00
* spee.ch
* To publish a file, navigate to the homepage.
2017-06-01 05:29:16 +02:00
* spee.ch/< the name of the claim >
* To view the file with the largest bid at a claim.
* E.g. spee.ch/doitlive.
* spee.ch/< the name of the claim >/< the claim_id >
* To view a specific file at a claim
* E.g. spee.ch/doitlive/c496c8c55ed79816fec39e36a78645aa4458edb5
2017-06-01 05:29:16 +02:00
* spee.ch/< the name of the claim >/all
* To view a batch of files at a claim
* E.g. spee.ch/doitlive/all
2017-06-27 00:16:46 +02:00
## API
#### GET
* spee.ch/api/resolve/:name
* a successfull request returns the resolve results for the claim at that name in JSON format
* spee.ch/api/claim_list/:name
* a successfull request returns a list of claims at that claim name in JSON format
#### POST
* spee.ch/api/publish
* request parameters:
* header:
* Content-Type: multipart/form-data
* body:
* claim: string (optional, defults to the file's name sans extension)
* license: string (optional, defaults to "No License Provided")
* nsfw: string ("on"/"off") or boolean (true/false). (optional, defaults `true`)
* files:
* (the `files` object submitted must use "file1" or "null" as the key for the file's value object)
* a successfull request will return the transaction details resulting from your published claim in JSON format
2017-06-12 02:32:31 +02:00
## bugs
If you find a bug or experience a problem, please report your issue here on github and find us in the lbry slack!