Skip to content

mondano/seedbank

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Seedbank

Infrastructure for the 3E Process Seedbank.

As of now, the plan is to build the client mainly in React. The back-end is currently built in Node, though we intend to eventually replace some of this functionality with a dApp built on Holochain.

Installation

cd anarchive and run npm install. Then do the same from the client directory. You'll also need to install knex globally, like npm i -g knex. Then copy .env.example as .env and fill out the values.

Development

To start a dev environment, cd anarchive and npm run dev. This starts both the server and client concurrently (view the client at localhost:3000).

React Development

To require authentication to view a given resource, just wrap the route declaration with the withAuth helper. E.g., in /client/App.js:

<Route exact path='/events' component={withAuth(EventsPage)} />

To do

  1. Testing
  2. More sophisticated handling for JWT invalidation/timeouts (logout currently just clears localStorage)
  3. Password reset

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 93.2%
  • HTML 5.4%
  • Other 1.4%