updated dev service url
This commit is contained in:
parent
81df71d4e9
commit
8d08147c91
@ -205,4 +205,4 @@ future: false
|
|||||||
# Custom configuration
|
# Custom configuration
|
||||||
custom-config:
|
custom-config:
|
||||||
blog-services:
|
blog-services:
|
||||||
service_url: 'http://localhost:5016'
|
service_url: 'http://localhost:5000'
|
||||||
18
db_scripts/mysql.sql
Normal file
18
db_scripts/mysql.sql
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
-- Create USER
|
||||||
|
|
||||||
|
-- CREATE USER 'user1'@localhost IDENTIFIED BY 'password1';
|
||||||
|
|
||||||
|
CREATE USER blog_admin@'%' IDENTIFIED BY 'pass@1234';
|
||||||
|
|
||||||
|
GRANT ALL PRIVILEGES ON blogDB.* TO blog_admin@'%';
|
||||||
|
|
||||||
|
SHOW GRANTS FOR blog_admin@'%';
|
||||||
|
|
||||||
|
FLUSH PRIVILEGES
|
||||||
|
|
||||||
|
|
||||||
|
-- Create Counter Table
|
||||||
|
|
||||||
|
-- DROP TABLE PostVisitCounter
|
||||||
|
|
||||||
|
-- create table PostVisitCounter (id INT(20) NOT NULL AUTO_INCREMENT PRIMARY KEY, siteid nvarchar(500), postid nvarchar(500), count INT(20), datecreated TIMESTAMP, datemodified TIMESTAMP);
|
||||||
Loading…
Reference in New Issue
Block a user