uasal / documents_index

0 stars 0 forks source link

Purpose

(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).

Users

Project members across multiple institutions.

Requirements

Software stack

For a quick test system:

Long-term

Long term, the system might need to be able to store some / all documents. To allow for this, some possible future directions are:

To test:

  1. 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
  2. Run the client-side Vue app in a different terminal window:

    $ cd client
    $ npm install
    $ npm run dev