Skip to content

Commit a65a3bf

Browse files
committed
Correct readme for issues #48 and #49
1 parent 8adcb54 commit a65a3bf

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,15 @@ Create a PostGIS database named `pgrouting`.
100100
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.
101101
This is not a necessary step, as it should be run by the scripts as well, but it prevents errors to do it manually.
102102

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+
103112
More information about the database can be found in the [Database section](./Documentation/user-doc.md#database) of the user documentation.
104113

105114
### Environment file
@@ -150,7 +159,7 @@ Once again, you can refer to the [user documentation](./Documentation/user-doc.m
150159
Run this command to launch the application:
151160

152161
```
153-
shiny run .\Python\GeoDataCompare\app.py
162+
shiny run .\src\GeoDataCompare\app.py
154163
```
155164

156165
You can then go to this link: http://127.0.0.1:8000

0 commit comments

Comments
 (0)