Skip to content
This repository has been archived by the owner on Apr 29, 2022. It is now read-only.

PREreview/prereview-standup

Repository files navigation

PREreview logo

API stability MIT license

NOTE: this project is under very active development and is not currently accepting contributions. Thanks for taking an interest 😊. Feel free to star/watch the repo and we'll remove this notice once we have processes and documentation in place to allow people to collaborate productively.

Join our PREreview Slack Channel

Developing

PREreview is composed of a server and client. The client is a choo app written in NodeJS and compiled for the browser using bankai. The server is an express app written in NodeJS. The database is PostgreSQL v11.

Requirements

  • NodeJS v12+

Installing

# install documentation
git clone https://github.com/PREreview/documentation.git
cd documentation && npm i
# install getpreprints
git clone https://github.com/PREreview/getpreprints.git
cd documentation && npm i
# install PREreview
git clone https://github.com/PREreview/prereview-standup.git
cd prereview-standup/client
npm i # install client app dependencies
cd ..
npm i # install server app dependencies

Running the platform

Running in developer mode provides a live-reloading client and server as well as various tools to inspect and debug the app in node and the browser.

To run the app:

npm run dev