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
|
2017-05-24 20:07:43 +02:00
|
|
|
* start lbry
|
|
|
|
* install the [`lbry`](https://github.com/lbryio/lbry) daemon
|
|
|
|
* start the `lbry` daemon
|
|
|
|
* clone this repo
|
2017-06-01 05:29:16 +02:00
|
|
|
* create a folder called `Uploads` in the same root directory where you cloned the repo
|
2017-05-24 20:07:43 +02:00
|
|
|
* run `npm install`
|
|
|
|
* from your terminal, run `npm start`
|
|
|
|
* to run hot, run `nodemon server.js`
|
2017-06-05 19:50:13 +02:00
|
|
|
* visit [localhost:3000](http://localhost:3000)
|
2017-03-29 19:28:35 +02:00
|
|
|
|
2017-05-24 20:07:43 +02:00
|
|
|
## site navigation
|
2017-06-01 05:29:16 +02:00
|
|
|
* spee.ch
|
2017-05-24 20:07:43 +02:00
|
|
|
* To publish a file, navigate to the homepage.
|
2017-06-01 05:29:16 +02:00
|
|
|
* spee.ch/< the name of the claim >
|
2017-05-24 20:07:43 +02:00
|
|
|
* 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
|
2017-05-24 20:07:43 +02:00
|
|
|
* To view a batch of files at a claim
|
|
|
|
* E.g. spee.ch/doitlive/all
|
|
|
|
|
2017-06-05 19:50:13 +02:00
|
|
|
## development road map (to do's)
|
2017-05-24 20:07:43 +02:00
|
|
|
* discover/explore functionality for home page
|
|
|
|
* display a list of claims at /:name/all
|
|
|
|
* fetching: a temporary page while the request is being made (with a loading bar?)
|
2017-06-05 19:50:13 +02:00
|
|
|
* eslint with style guidelines
|
|
|
|
* implement a design for the front end
|
2017-05-24 20:07:43 +02:00
|
|
|
|
|
|
|
## API
|
|
|
|
|
|
|
|
Note: these are being used for testing durring spee.ch development and may not be maintained
|
|
|
|
|
2017-06-01 05:29:16 +02:00
|
|
|
* A GET request to spee.ch/claim_list/< the name of the claim >
|
2017-05-24 20:07:43 +02:00
|
|
|
* Will return the claim_list for the claim in json format.
|
|
|
|
* E.g. spee.ch/claim_list/doitlive
|