WIP - We're building the place you go to discover, share, and sell files on the web.
Go to file
2020-09-06 10:58:38 -07:00
.github/ISSUE_TEMPLATE issues: removes excess template. 2020-06-22 14:32:39 -07:00
build Build for Mac, need to fix babel config 2020-07-08 18:51:49 -05:00
common slugs: supports chinese 2020-09-06 10:24:58 -07:00
components add event listener to close burger menu on resize 2020-09-06 10:58:38 -07:00
dist npm: resolves warnings 2020-08-19 00:18:29 -07:00
electron routes: renaming to remove @ from user routes 2020-08-06 16:06:54 -07:00
node_common usernames: prevents any possibility of capitalization 2020-09-03 09:19:52 -07:00
pages add event listener to close burger menu on resize 2020-09-06 10:58:38 -07:00
public/static lannding: fix burger menu bug, content tweaks and improve CSS code quality 2020-09-05 00:27:50 -07:00
scenes finished updating directory design 2020-09-05 17:47:56 -07:00
scripts database: adds trusted, subscriptions, and activity tables 2020-08-24 23:08:13 -07:00
vendor strings: supports username mentions and slate mentions and links in text 2020-08-26 23:03:30 -07:00
.babelrc Webpack for node server 2020-07-08 18:53:46 -05:00
.gitignore gitignore: ignores new production env 2020-08-16 16:45:37 -07:00
index.js Electron env updates 2020-08-02 21:45:59 -05: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
nodemon.json initial commit for the application prototype 2020-06-03 09:20:54 -07:00
package.json 1.0.0 2020-09-05 15:05:04 -07:00
README.md Update README.md 2020-09-04 11:37:18 -07:00
rollup.config.js react-tippy: removed from the codebase 2020-08-15 18:39:00 -07:00
server.js slates: fixes some errors with saving, adds auto save 2020-09-02 14:04:47 -07:00

Slate

Slate

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

Introduction

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.

Developer API

Slate has a Developer API that allows you upload files using code. Every user who creates an account on Slate can use the API today. Here is an example of how simple it is:

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

Create an account today and let us know what you think!

Get involved.

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

Getting involved is simple:

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

Developer Introduction

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

.env

  • You must create a .env file if you want to work on the service.
  • You don't need one if you work on the system.
POSTGRES_ADMIN_PASSWORD=XXX
POSTGRES_ADMIN_USERNAME=XXX
POSTGRES_HOSTNAME=XXX
POSTGRES_DATABASE=XXX
JWT_SECRET=XXX
LOCAL_PASSWORD_SECRET=XXX
LOCAL_PASSWORD_ROUNDS_MANUAL=5
LOCAL_PASSWORD_ROUNDS=14
TEXTILE_HUB_KEY=XXX
TEXTILE_HUB_SECRET=XXX

Install and run

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

# Run using existing .data folder
npm run dev

screenshot

  • Visit localhost:1337 in a browser.

Run electron (MacOS)

npm run electron-dev