You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, the README describes how to run the database, the backend and the frontend. However, it does not describe how to populate the database with models, or how to update it afterwards (plus I had a few issues with port settings).
In the final documentation, we should have instructions on how to setup everything. In particular:
How to start/stop the database using docker.
How to load data into the database and update it if necessary ("updating" the raw data can be just copying from the other github repository).
How to check/setup the database connection: I had to set the DATABASE_URL environment variable with the correct URL, including user, password, port, and database. It would be good to just write this down somewhere in case someone not familiar with the project needs to run it locally.
I had to change the port in frontend/src/services/base.ts to 3000 (instead of 3001). I'm guessing in the final version, this URL will probably be another environment variable? Or some kind of configuration option?
How to start the dev server for backend and frontend.
The text was updated successfully, but these errors were encountered:
Right now, the README describes how to run the database, the backend and the frontend. However, it does not describe how to populate the database with models, or how to update it afterwards (plus I had a few issues with port settings).
In the final documentation, we should have instructions on how to setup everything. In particular:
DATABASE_URL
environment variable with the correct URL, including user, password, port, and database. It would be good to just write this down somewhere in case someone not familiar with the project needs to run it locally.frontend/src/services/base.ts
to3000
(instead of3001
). I'm guessing in the final version, this URL will probably be another environment variable? Or some kind of configuration option?The text was updated successfully, but these errors were encountered: