-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Editor config
- Loading branch information
Showing
12 changed files
with
108 additions
and
25 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,18 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
indent_size = 4 | ||
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[Makefile] | ||
indent_style = tab | ||
|
||
[*.md] | ||
# markdown uses two spaces at the end of the line for a line break | ||
trim_trailing_whitespace = false | ||
|
||
[*.{yaml,yml,js,json}] | ||
indent_size = 2 |
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,17 @@ | ||
# Database connection - App | ||
DB_DATABASE=healthnest-db | ||
DB_HOST=localhost | ||
DB_PASSWORD=hel#net191 | ||
DB_USER=healthnest | ||
DB_PORT=3306 | ||
# Database password | ||
MYSQL_DATABASE=healthnest-db | ||
MYSQL_PASSWORD=hna123 | ||
MYSQL_ROOT_PASSWORD=root123 | ||
MYSQL_USER=healthnest | ||
# Port | ||
PORT=8081 | ||
API_PORT=4000 | ||
# Frontned | ||
BASE_URL="http://localhost:4000" | ||
API_URL="http://localhost:4000" |
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,17 @@ | ||
# Database connection - App | ||
DB_DATABASE=healthnest-db | ||
DB_HOST=localhost | ||
DB_PASSWORD=hel#net191 | ||
DB_USER=healthnest | ||
DB_PORT=3306 | ||
# Database password | ||
MYSQL_DATABASE=healthnest-db | ||
MYSQL_PASSWORD=hna123 | ||
MYSQL_ROOT_PASSWORD=root123 | ||
MYSQL_USER=healthnest | ||
# Port | ||
PORT=8081 | ||
API_PORT=3000 | ||
# Frontned | ||
BASE_URL="http://localhost:4000" | ||
API_URL="http://localhost:4000" |
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 @@ | ||
**/.env | ||
# **/.env |
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
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,7 @@ | ||
# Database connection - App | ||
DB_DATABASE=healthnest-db | ||
DB_HOST=hndb.enblitz.com | ||
DB_PASSWORD=hel#net191 | ||
DB_USER=healthnest | ||
DB_PORT=3306 | ||
API_PORT=3000 |
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,7 @@ | ||
# Database connection - App | ||
DB_DATABASE=healthnest-db | ||
DB_HOST=localhost | ||
DB_PASSWORD=hel#net191 | ||
DB_USER=healthnest | ||
DB_PORT=3306 | ||
API_PORT=3000 |
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
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
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,6 @@ | ||
# Port | ||
PORT=8081 | ||
API_PORT=8081 | ||
# Frontned | ||
BASE_URL="http://localhost:8081" | ||
API_URL="http://localhost:3000" |
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,6 @@ | ||
# Port | ||
PORT=8081 | ||
API_PORT=8081 | ||
# Frontned | ||
BASE_URL="http://localhost:8081" | ||
API_URL="http://localhost:8081" |
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 @@ | ||
export const BASE_URL = "http://localhost:4000"; | ||
export const BASE_URL = "http://localhost:3000"; | ||
|