WIP - We're building the place you go to discover, share, and sell files on the web.
Go to file
2021-05-03 20:30:33 +00:00
.githooks add post-merge hook 2021-02-17 17:27:48 +00:00
.github Update issue templates 2021-04-15 20:19:55 -07:00
common fixed error when edit slate name, new tags not removeable 2021-04-23 19:24:03 -07:00
components fixing broken date on markdown files and api key generation and monitor subscribe undefined 2021-04-30 12:14:14 -07:00
dist emotion 11.1.1 and react 17.0.1 update 2020-11-29 21:35:19 -08:00
node_common fixing broken date on markdown files and api key generation and monitor subscribe undefined 2021-04-30 12:14:14 -07:00
pages change preview 2021-04-23 19:59:06 -07:00
public fix: replace slate icons 2021-04-23 09:14:27 +00:00
scenes renamed slates to collections on front end 2021-04-22 22:18:46 -07:00
scripts updated migration script 2021-04-22 02:26:47 -07:00
vendor final audit 2020-11-07 18:36:29 -08:00
.babelrc Webpack for node server 2020-07-08 18:53:46 -05:00
.eslintignore add base eslint config and deps 2021-02-17 14:54:04 +00:00
.eslintrc.js use @babel/eslint-parser 2021-03-01 17:23:35 +00:00
.gitignore inc package-lock 2021-02-16 16:08:15 +00:00
.prettierignore added simple prettier defaults 2020-10-05 12:25:55 -07:00
.prettierrc prettier: can't believe we let this bracketSpacing rule slip 2020-10-06 20:55:34 -07:00
index.js slate: removes electron vulunerabilities 2020-11-25 10:13:24 -08:00
jsconfig.json added jsconfig.json 2021-05-03 20:30:33 +00:00
knexfile.js knex: enable ssl in production 2020-07-22 17:13:09 -07:00
LICENSE-MIT design system: cleanup, adds license 2020-07-16 10:41:49 -07:00
next.config.js fix: pwa issues 2021-04-22 15:00:25 +00:00
nodemon.json initial commit for the application prototype 2020-06-03 09:20:54 -07:00
package-lock.json fixing broken date on markdown files and api key generation and monitor subscribe undefined 2021-04-30 12:14:14 -07:00
package.json fix: pwa issues 2021-04-22 15:00:25 +00:00
README.md saving work 2021-04-22 21:18:02 -07:00
rollup.config.js rollup: 923kb end result 2020-11-25 17:41:19 -08:00
server.js fixed profiles external not loading 2021-04-28 12:12:37 -07:00

Slate

Slate

An open source storage system for your data that makes it easy to collect, organize, and share them anywhere on the web.

Introduction

Slate Preview

Slate is the first open source file storage application designed to encourage collaboration and research across a distributed network. It is a first step towards enabling a thriving network for data storage and transactions powered by IPFS, Filecoin and Textile that is open and usable for everyone. Our goal is to provide a meaningful story for every feature the protocol provides today and in the future. The Slate Project is the byproduct of a growing community of contributors from around the world.

Slate is tightly scoped for the present and more broadly thought out for the future. Our primary objective is to create a best-in-class experience for uploading, collecting, and sharing media. Additional filetypes will be supported, but our focus is to start with the pieces that apply to everyone and then dial into more specific formats.

Create an account and try it out!

Get involved

Slate is built by a growing community of collaborators and contributors. Wed love for you to join us!

How?

  • Find something you want to work on and file an issue.
  • If you see something you want to fix or change, submit a PR.
  • Reach out at any time. We're always available on Twitter to answer your questions: @_slate.

Slate Development Guide

  • To work on Slate you must have an internet connection.
  • We don't have windows support at the moment.

Clone this repo

Working on Slate starts by cloning the repo :)

git clone https://github.com/filecoin-project/slate.git
cd slate

.env

You must create a .env file if you want to work on the service.

  • You must setup your own postgres or hosted postgres.
  • You must have your own Textile hub account setup
  • You will have to run 3 other servers manually until we automate.
POSTGRES_ADMIN_PASSWORD=XXX
POSTGRES_ADMIN_USERNAME=XXX
POSTGRES_HOSTNAME=XXX
POSTGRES_DATABASE=XXX
LOCAL_PASSWORD_SECRET=XXX
LOCAL_PASSWORD_ROUNDS_MANUAL=5
LOCAL_PASSWORD_ROUNDS=14
TEXTILE_HUB_KEY=XXX
TEXTILE_HUB_SECRET=XXX
JWT_SECRET=XXX
ALLOWED_HOST=localhost:1337
PUBSUB_SECRET=pKLO4lbzdMrhAFKwPo9bnmq03bxQrtu3
RESOURCE_URI_UPLOAD=http://localhost:4242
RESOURCE_URI_STORAGE_UPLOAD=http://localhost:4242
RESOURCE_URI_PUBSUB=ws://localhost:6464
RESOURCE_URI_SEARCH=http://localhost:1313

Setup pubsub server

Setup file upload server

Setup search server

Install and run

npm install
npm run dev
  • Visit localhost:1337 in a browser.
  • You should have 3 terminal screens open unless you don't want real time updates and file upload support.

Design System

Our design system is out of date and could use an update.

Developer API

Slate has a Developer API that allows you upload files using code and HTTP.

Every user who creates an account on Slate can use the API. Here is an example:

const response = await fetch("https://slate.host/api/v1/get", {
  method: "POST",
  headers: {
    "Content-Type": "application/json",
    Authorization: "Basic XXX-YOUR-SLATE-KEY-XXX",
  },
});