updated dev service url

This commit is contained in:
Bangara Raju Kottedi 2023-08-19 22:02:40 +05:30
parent 81df71d4e9
commit 8d08147c91
2 changed files with 19 additions and 1 deletions

View File

@ -205,4 +205,4 @@ future: false
# Custom configuration
custom-config:
blog-services:
service_url: 'http://localhost:5016'
service_url: 'http://localhost:5000'

18
db_scripts/mysql.sql Normal file
View 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);