This repository has been archived by the owner on Dec 2, 2024. It is now read-only.
-
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.
Co-authored-by: Yinan Bao <[email protected]>
- Loading branch information
Showing
78 changed files
with
104 additions
and
1,845 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -21,4 +21,3 @@ jobs: | |
- run: npm run lint | ||
- run: npm run shared | ||
- run: npm run tsc | ||
- run: npm run test |
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
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,6 +1,5 @@ | ||
export const DataSource = Object.freeze({ | ||
Tiingo: 'Tiingo', | ||
AlphaVantage: 'AlphaVantage', | ||
}) | ||
|
||
export const DataMarkup = '*****' |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ DB_USER=test | |
DB_PASS=123 | ||
DB_HOST=127.0.0.1 | ||
DB_PORT=5432 | ||
DB_NAME=melody | ||
DB_NAME=melody-invest | ||
|
||
CACHE_HOST=127.0.0.1 | ||
CACHE_PORT=6379 | ||
|
@@ -23,7 +23,7 @@ DATA_KEY_SECRET=345 | |
CLIENT_HOST=127.0.0.1:3099 | ||
CLIENT_TYPE=http | ||
|
||
EMAIL_SENDER=[email protected] | ||
EMAIL_SENDER= | ||
EMAIL_HOST=smtp-mail.outlook.com | ||
EMAIL_PORT=587 | ||
EMAIL_PASS=123 | ||
|
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 @@ | ||
exports.up = (knex) => { | ||
return knex('policy').insert([ | ||
{ | ||
type: 1, | ||
content: 'Privacy policy', | ||
createdAt: new Date(), | ||
}, | ||
{ | ||
type: 2, | ||
content: 'Terms and Conditions', | ||
createdAt: new Date(), | ||
}, | ||
]) | ||
} | ||
|
||
exports.down = (knex) => { | ||
} |
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 |
---|---|---|
|
@@ -10,4 +10,4 @@ exports.up = (knex) => { | |
|
||
exports.down = (knex) => { | ||
return knex.schema.dropTable('daily_indicators') | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
51 changes: 0 additions & 51 deletions
51
server/migrations/20230416155000_add_entityId_to_resource_tables.js
This file was deleted.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
server/migrations/20230416200000_drop_ticker_category_table.js
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
server/migrations/20230416213000_remove_isSystem_to_env_table.js
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
server/migrations/20230418203000_remove_name_to_ticker_table.js
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
server/migrations/20230422180000_add_dataSource_to_entity_tables.js
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.