Latest instructions as we move to a separate Python server for LLM calls.
First, pull the latest from main
in this repo and start in the root directory (tttc-light-js
).
- If this is your first time running this repo, go to
common
and runnpm i && npm run build
. - In a new terminal, run
brew install redis
andredis-server
to install Redis and start a local Redis server. - From the repo root,
cd pyserver
; runpython -m venv venv
andsource ./.venv/bin/activate
to activate the virutal environment, and install the Python package dependencies inrequirements.txt
with your preferred method (e.g.pip install -r requirements.txt
). Note: this will get more standardized soon. - Add this line to
next-client/.env
andnext-client/.env.local
:export PIPELINE_EXPRESS_URL=http://localhost:8080
. - See the main README for additional lines to add to .env files
- From the root level, run
npm i
thennpm run dev
. - This should open four windows: the
next-client
app front end atlocalhost:3000
, theexpress-server
app backend atlocalhost:8080
, thepyserver
Python FastAPI server for LLM calls atlocalhost:8000
, and an overall Node watch process from thecommon
directory. Ideally none of these windows show errors — if they do, we need to fix them first. - In your browser, go to
http://localhost:3000/create
to view the T3C app. To create a report, fill out the fields and click "Generate report"
- Once you click "Generate report", if the process is successful, you will see the text "UrlGCloud". This is a hyperlink — open it in a new tab/window.
- You will see the raw data dump of the generated report in JSON format. The url of this report will have this form
https://storage.googleapis.com/[GCLOUD_STORAGE_BUCKET]/[generated report id]
, whereGCLOUD_STORAGE_BUCKET
is an environment variable set inexpress-server/.env
and the generated report id is an output of this pipeline run. - By default, in local dev the pretty version of the corresponding report lives at
http://localhost:3000/report/https%3A%2F%2Fstorage.googleapis.com%2F[GCLOUD_STORAGE_BUCKET]%2F[generated report id]
. You can copy & paste and substitute in the values for the generated report id (different for each report you create) and the GCLOUD_STORAGE_BUCKET (likely the same for all testing sessions). Keep in mind that the separator is %2F and not the traditional url slash :)
Adding notes here from issues we surface in testing.
- Power cycling: one good thing to try first is to restart the process in any one of the windows by ending the process and rerunning the specific previous command in that window (e.g. using the up arrow to find it).
There are four main folders to look at:
/next-client
- This is where the frontend client lives.
- The two main features of it are the ability to submit data to the backend, and to render reports.
/express-server
- This is the backend Express app that handles submissions and works with the LLM to generate JSON reports.
- Everything in
express-server/src
will be transpiled into/dist
.
/common
- This is where shared type definitions are stored. It's symlinked with
next-client
and/express-server
. - If you don't have the watcher running, you'll need to rebuild anytime there's a change.
- This is where shared type definitions are stored. It's symlinked with
/bin
- Scripts for managing Docker images. The main one you'll need to use is
./bin/docker-build-gcloud.sh
- Scripts for managing Docker images. The main one you'll need to use is
Some general points:
- The repo mostly uses TypeScript. Use TypeScript by default whenever you can.
- Prettier is used for formatting. Code should always be formatted prior to being committed.
- Husky is used for pre-commit hooks.
- Zod is used for both types and parsing for any data shared across the frontend-backend.
TBD