-
-
Notifications
You must be signed in to change notification settings - Fork 5
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 #411 from aXenDeveloper/package/copy_backend_files
perf(backend): Create copy files script into backend
- Loading branch information
Showing
166 changed files
with
383 additions
and
2,194 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
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
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 @@ | ||
// ! DO NOT REMOVE, MODIFY OR MOVE THIS FILE!!! | ||
|
||
import tableCore from '@/plugins/core/admin/database/index'; | ||
import tableWelcome from '@/plugins/welcome/admin/database/index'; | ||
// ! === IMPORT === | ||
|
||
export const schemaDatabase = { | ||
...tableWelcome, | ||
// ! === MODULE === | ||
...tableCore, | ||
}; | ||
|
||
export const DATABASE_ENVS = { | ||
host: process.env.DB_HOST || 'localhost', | ||
port: process.env.DB_PORT ? +process.env.DB_PORT : 5432, | ||
user: process.env.DB_USER || 'root', | ||
password: process.env.DB_PASSWORD || 'root', | ||
database: process.env.DB_DATABASE || 'vitnode', | ||
}; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
apps/backend/src/plugins/blog/admin/categories/create/create.resolver.ts
This file was deleted.
Oops, something went wrong.
70 changes: 0 additions & 70 deletions
70
apps/backend/src/plugins/blog/admin/categories/create/create.service.ts
This file was deleted.
Oops, something went wrong.
67 changes: 0 additions & 67 deletions
67
apps/backend/src/plugins/blog/admin/categories/create/dto/create.args.ts
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.