-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #481 from project-violet/server-comment
Introduce post comment api
- Loading branch information
Showing
15 changed files
with
4,023 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
NODE_ENV=test | ||
DB_HOST=127.0.0.1 | ||
DB_PORT=3306 | ||
DB_USER=root | ||
DB_PASSWORD=root | ||
DB_DB=violet-test | ||
ACCESS_TOKEN_SECRET_KEY=asdf | ||
REFRESH_TOKEN_SECRET_KEY=asdf | ||
ACCESS_EXPIRES=86400 | ||
REFRESH_EXPIRES=31536000 | ||
SALT=1234 | ||
REDIS_HOST=localhost | ||
REDIS_PORT=6379 | ||
IS_MASTER_NODE=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
CREATE SCHEMA IF NOT EXISTS violet; | ||
CREATE SCHEMA IF NOT EXISTS violet; | ||
CREATE SCHEMA IF NOT EXISTS `violet-test`; |
Oops, something went wrong.