File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,15 @@ Create a PostGIS database named `pgrouting`.
100
100
Then, to install the extensions and create the schemas according to the database model, run the [ init.sql] ( ./Data/init.sql ) script in your database.
101
101
This is not a necessary step, as it should be run by the scripts as well, but it prevents errors to do it manually.
102
102
103
+ To do so, you can run these two commands:
104
+
105
+ ``` cmd
106
+ createdb -U postgres pgrouting
107
+ psql -U postgres -d pgrouting -f Data\init.sql
108
+ ```
109
+
110
+ After each command, you should have to enter the password associated with the postgres user (usually ` postgres ` ).
111
+
103
112
More information about the database can be found in the [ Database section] ( ./Documentation/user-doc.md#database ) of the user documentation.
104
113
105
114
### Environment file
@@ -150,7 +159,7 @@ Once again, you can refer to the [user documentation](./Documentation/user-doc.m
150
159
Run this command to launch the application:
151
160
152
161
```
153
- shiny run .\Python \GeoDataCompare\app.py
162
+ shiny run .\src \GeoDataCompare\app.py
154
163
```
155
164
156
165
You can then go to this link: http://127.0.0.1:8000
You can’t perform that action at this time.
0 commit comments