This website works better with JavaScript.
Home
Explore
Help
Sign In
sindre
/
Beelance
Watch
1
Star
0
Fork
0
Code
Issues
6
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Project status not changing when all tasks delivered
https
jakobsn
6 years ago
parent
143ffcb42e
commit
c44c55fc1d
2 changed files
with
3 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-2
README.md
+2
-2
src/app/models/database.py
+ 1
- 2
README.md
View File
@@ -55,8 +55,7 @@ Insert mysql queries
"SET PASSWORD FOR 'root'@'localhost' = PASSWORD('root');"
Then populate databse by posting mysql/sql/init.sql into
mysql
Then populate databse by posting mysql/sql/init.sql into mysql
Edit src/app/models/database.py to point at local server
+ 2
- 2
src/app/models/database.py
View File
@@ -3,8 +3,8 @@ import mysql.connector
db = mysql.connector.connect(
user='root',
password='root',
#
host='10.5.0.5', # Docker address
host='0.0.0.0', # Local address
host='10.5.0.5', # Docker address
#
host='0.0.0.0', # Local address
database='db'
)
Write
Preview
Loading…
Cancel
Save