-
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.
chore: sample secrets file added to run the project
- Loading branch information
Ashok
authored and
Ashok
committed
Mar 23, 2024
1 parent
de5bf77
commit 408d1ec
Showing
5 changed files
with
61 additions
and
4 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
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,19 @@ | ||
{ | ||
"development": { | ||
"username": "ashok", | ||
"password": "secret", | ||
"database": "eth", | ||
"host": "localhost", | ||
"dialect": "postgres", | ||
"port": 5432 | ||
}, | ||
"production": { | ||
"username": "ashok", | ||
"password": "secret", | ||
"database": "eth", | ||
"host": "postgres", | ||
"dialect": "postgres", | ||
"port": 5432 | ||
} | ||
|
||
} |
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,3 @@ | ||
POSTGRES_DB=eth | ||
POSTGRES_USER=ashok | ||
POSTGRES_PASSWORD=secret |
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,29 @@ | ||
|
||
NODE_ENV=production #DO NOT CHANGE | ||
|
||
PORT=4000 | ||
VERSION=v1 | ||
ORIGIN=* | ||
|
||
DB_USER=ashok | ||
DB_PASSWORD=secret | ||
DB_DATABASE=eth | ||
DB_PORT=5432 | ||
|
||
DB_HOST=postgres #DO NOT CHANGE | ||
|
||
JWT_SECRET=7LdPnw30KauR9jg63TJpw2BXixqrgo1j | ||
JWT_EXPIRY=1d | ||
|
||
LOCAL_NODE_PROVIDER_URL=http://127.0.0.1:8545 | ||
|
||
INFURA_API_KEY= | ||
INFURA_PROJECT_ID= | ||
INFURA_PROJECT_SECRET= | ||
|
||
NETWORK_NAME=sepolia | ||
CHAIN_ID=11155111 | ||
|
||
|
||
AUCTION_CONTRACT_ADDRESS=0x23436F18efEEcf9AB7210626940963F3d2549053 #Auction contract deployed on Sepolia testnet | ||
# Contract url => https://sepolia.etherscan.io/address/0x23436F18efEEcf9AB7210626940963F3d2549053 |
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