(see issue) A simple system single source of truth for project document metadata (title, document number, author name, possibly abstract) and location (link to where it is stored).
Project members across multiple institutions.
For a quick test system:
Long term, the system might need to be able to store some / all documents. To allow for this, some possible future directions are:
Run the server-side Flask app in one terminal window (in the appropriate env, which here is called dis
):
$ cd server
$ conda activate dis
(env)$ conda install --file requirements.txt
(env)$ flask run --port=5001 --debug
Run the client-side Vue app in a different terminal window:
$ cd client
$ npm install
$ npm run dev