Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ for example, as follows:
mysql> commit;
mysql> ^ C

2.2 Then, in the configuration file, you need to comment out the connection strings to the sqlite database and uncomment the connection string to the Mysql database:
2.2 Then, in the configuration file sopds/settings.py, you need to comment out the connection strings to the sqlite database and uncomment the connection string to the Mysql database:


DATABASES = {
Expand Down Expand Up @@ -187,7 +187,7 @@ Next, you must first create a database "sopds" and a user with the necessary rig
postgres=# create database sopds with owner sopds;
postgres=# \q

3.2 Next in the configuration file, you need to comment out the connection strings to the sqlite database and decompress it accordingly the connection string to the PostgreSQL database:
3.2 Next in the configuration file sopds/settings.py, you need to comment out the connection strings to the sqlite database and decompress it accordingly the connection string to the PostgreSQL database:

DATABASES = {
'default': {
Expand Down