Are there any instructions on how to start the application? #59
-
Hi! I´ve seen instructions on how to get the application running on the FullStack repository, but I can´t find it here. Maybe the steps are obvious, but I´ve been out of the loop for 5 years about software development, and I´ve catching up to speed with your curated docs and examples. Thank you in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Sorry for the late answer, I was on vacations and then forgot about this question. Leaving it here in case somebody else has issues running the app, run this commands from the project root directory:
All the commands above can be found in |
Beta Was this translation helpful? Give feedback.
Sorry for the late answer, I was on vacations and then forgot about this question.
Leaving it here in case somebody else has issues running the app, run this commands from the project root directory:
npm install
- install dependenciesnpm run docker:env
- run docker environment (spins up postgres database in docker). If run for the first time wait for it to download dependencies and then it should start automaticallynpm run migration:up
- run migrations that will create tables in the databasenpm run start:dev
- run the application.All the commands above can be found in
package.json