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
After having [cloned the repository](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository) on your local machine and defining all environment variables according to the `.env.example`, to start the app locally follow this steps.
17
+
18
+
1. Make sure you have all dependencies installed, running:
19
+
20
+
```
21
+
pnpm install
22
+
```
23
+
24
+
2. Start the database the app will use, running:
25
+
26
+
```
27
+
pnpm start-db
28
+
```
29
+
_The Docker daemon needs to be running for this to work_
30
+
31
+
If there is already a postgres container running, with an incompatible database, you can stop it with `pnpm stop-db`.
32
+
33
+
3. Enter the dev watch mode from astro, running:
34
+
35
+
```
36
+
pnpm dev
37
+
```
38
+
39
+
Now you can see the logs of the backend on the terminal and visit the frontend under the URL specified by the variable `URL` from the `.env`-file.
40
+
(By default http://localhost:3000)
41
+
42
+
The database should start to populate from the configured indexer.
0 commit comments