An image hosting service on top of the LBRY protocol.
Go to file
2018-02-22 16:42:35 -08:00
auth added standard-jsx to eslint and fixed issues 2018-02-21 17:02:57 -08:00
config updated missing "title" in spee.ch config 2018-02-20 15:43:39 -08:00
constants fixed the import statements; 2018-01-23 14:45:54 -08:00
controllers added standard-jsx to eslint and fixed issues 2018-02-21 17:02:57 -08:00
helpers removed console logs and dead codes 2018-02-22 16:42:35 -08:00
migrations added migration to change DOUBLE to DECIMAL 2017-11-08 07:25:21 -08:00
models added standard-jsx to eslint and fixed issues 2018-02-21 17:02:57 -08:00
passport added standard-jsx to eslint and fixed issues 2018-02-21 17:02:57 -08:00
public updated webpack config 2018-02-21 12:24:23 -08:00
react removed console logs and dead codes 2018-02-22 16:42:35 -08:00
routes broke out routes from App.jsx, and added handleShowRender for static methods 2018-02-22 10:48:46 -08:00
task-scripts added redirect from login page to publish page if user logs in 2018-02-02 14:24:46 -08:00
test updated routes to better REST style 2018-02-06 21:55:04 -08:00
views added google-ga package 2018-02-15 15:55:24 -08:00
.eslintignore added end to end tests with chai 2017-12-15 07:24:29 -08:00
.eslintrc added standard-jsx to eslint and fixed issues 2018-02-21 17:02:57 -08:00
.gitignore removed config/config.json from .gitignore 2017-11-13 16:00:21 -05:00
.sequelizerc added migrations for Claim column types 2017-11-07 14:47:41 -08:00
LICENSE create initial LICENSE file 2018-02-05 12:43:14 -08:00
package-lock.json Edited code to be ES6, added eslint and some basic linting configuration 2017-06-17 22:51:30 +02:00
package.json reorganized sagas to chain necessary actions 2018-02-22 15:43:26 -08:00
README.md added standard-jsx to eslint and fixed issues 2018-02-21 17:02:57 -08:00
server.js updated webpack config 2018-02-21 12:24:23 -08:00
webpack.config.js broke out routes from App.jsx, and added handleShowRender for static methods 2018-02-22 10:48:46 -08:00

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 and password someplace handy
  • start lbrynet daemon
    • install the lbry daemon
    • start the lbry daemon
  • start spee.ch-sync
  • start spee.ch
    • clone this repo
    • run npm install
    • create your speechConfig.js file
      • copy speechConfig.js.example and name it speechConfig.js
      • replace the null values in the config file with the appropriate values for your environement
    • to start the server, from your command line run node serverBundle.js
  • visit localhost:3000

Tests

  • Spee.ch uses mocha with chai for testing.
  • To run all tests that do not require LBC, run npm test -- --grep @usesLbc --invert
  • To run all tests, including those that require LBC (like publishing), simply run npm test

API

GET

  • /api/claim/resolve/:name/:claimId
    • example: curl https://spee.ch/api/claim/resolve/doitlive/xyz
  • /api/claim/list/:name
    • example: curl https://spee.ch/api/claim/list/doitlive
  • /api/claim/availability/:name (
    • returns true/false for whether a name is available through spee.ch
      • example: curl https://spee.ch/api/claim/availability/doitlive
  • /api/channel/availability/:name (
    • returns true/false for whether a channel is available through spee.ch * example: curl https://spee.ch/api/channel/availability/@CoolChannel

POST

  • /api/claim/publish
    • example: curl -X POST -F 'name=MyPictureName' -F 'file=@/path/to/myPicture.jpeg' https://spee.ch/api/claim/publish
    • Parameters:
      • name
      • file (must be type .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 if channelName is provided)

bugs

If you find a bug or experience a problem, please report your issue here on github and find us in the lbry discord!