From 564bea14b74b6ad63db840b5c275a484e211f7c7 Mon Sep 17 00:00:00 2001 From: Son Nguyen Date: Wed, 16 Oct 2024 00:40:53 -0400 Subject: [PATCH 1/2] Delete .dockerignore Signed-off-by: Son Nguyen --- .dockerignore | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index 5dab7933..00000000 --- a/.dockerignore +++ /dev/null @@ -1,37 +0,0 @@ -# Docker Ignore file for the MovieVerse project -# General files -.git -.gitignore -.dockerignore -emsdk -Dockerfile -LICENSE -*.md - -# Node modules -node_modules - -# Logs -logs -npm-debug.log* - -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Bower dependency directory (https://bower.io/) -bower_components - -# Jekyll metadata folder -.jekyll-metadata - -# Dependency directories -jspm_packages/ From 390c2501ebd9ce0c1afbbbea5714e6e8b4178307 Mon Sep 17 00:00:00 2001 From: Son Nguyen Date: Wed, 23 Oct 2024 12:38:26 -0400 Subject: [PATCH 2/2] Delete .idea directory Signed-off-by: Son Nguyen --- .idea/.gitignore | 7 - .idea/README.md | 47 - .idea/The-MovieVerse-Database.iml | 16 - .idea/dataSources.local.xml | 19 - .idea/dataSources.xml | 12 - .../791709d9-b4c0-4b2f-87d0-642aa59a89d3.xml | 942 ------------------ .../schema/information_schema.FNRwLQ.meta | 2 - .../storage_v2/_src_/schema/mysql.osA4Bg.meta | 2 - .../schema/performance_schema.kIw0nw.meta | 2 - .../storage_v2/_src_/schema/sys.zb4BAA.meta | 2 - .idea/dbnavigator.xml | 403 -------- .idea/jsLibraryMappings.xml | 6 - .idea/modules.xml | 8 - .idea/vcs.xml | 6 - .idea/watcherTasks.xml | 25 - 15 files changed, 1499 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/README.md delete mode 100644 .idea/The-MovieVerse-Database.iml delete mode 100644 .idea/dataSources.local.xml delete mode 100644 .idea/dataSources.xml delete mode 100644 .idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3.xml delete mode 100644 .idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3/storage_v2/_src_/schema/information_schema.FNRwLQ.meta delete mode 100644 .idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3/storage_v2/_src_/schema/mysql.osA4Bg.meta delete mode 100644 .idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3/storage_v2/_src_/schema/performance_schema.kIw0nw.meta delete mode 100644 .idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3/storage_v2/_src_/schema/sys.zb4BAA.meta delete mode 100644 .idea/dbnavigator.xml delete mode 100644 .idea/jsLibraryMappings.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/vcs.xml delete mode 100644 .idea/watcherTasks.xml diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 7abb13d0..00000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# GitHub Copilot persisted chat sessions -/copilot/chatSessions diff --git a/.idea/README.md b/.idea/README.md deleted file mode 100644 index 1bd67a19..00000000 --- a/.idea/README.md +++ /dev/null @@ -1,47 +0,0 @@ -# The MovieVerse - `.idea` Directory - -## Introduction - -The `.idea` directory is a configuration folder used by JetBrains IntelliJ IDEA and Webstorm, which are Integrated Development Environments (IDEs) used for software development. It contains a set of XML configuration files that IDEA uses to maintain project settings. These settings are used to ensure that all team members working on the project have a consistent environment, which includes configurations for code style, project dictionaries, and more. - -## Directory Contents - -Within the `.idea` directory, you'll find several important configuration files. Below is an overview of each file and its purpose: - -- **`dataSources.xml`**: This file contains definitions for data sources within the project, such as database connections. It can include connection settings, credentials (usually stored in a safer manner), and specifics about the database schema. - -- **`dataSources.local.xml`**: Similar to `dataSources.xml`, this file may contain local data source configurations that are specific to a developer's local environment. These settings are not shared with the team to avoid conflicts between different local development setups. - -- **`dbnavigator.xml`**: Contains settings for database navigation tools, which may include configurations for viewing schemas, tables, and running queries within the IDE. - -- **`jsLibraryMappings.xml`**: Manages library mappings for JavaScript, ensuring that the project recognizes the JavaScript libraries used and provides appropriate code assistance for them. - -- **`modules.xml`**: Defines the modules that make up the project. In IntelliJ IDEA, a project can consist of multiple modules, which could be separate libraries, applications, or components of the software being developed. - -- **`The-MovieVerse-Database.iml`**: This IntelliJ Module file contains settings specific to the module named `The-MovieVerse-Database`, such as its build path, module dependencies, and other configurations necessary for the IDE to manage the module correctly. - -- **`vcs.xml`**: Configures Version Control System settings within the IDE. This may include settings for Git, SVN, or other VCS that the project uses. - -- **`.gitignore`**: Not specific to IntelliJ IDEA, this file tells Git which files or directories to ignore in the project. Typically, it includes system files, build folders, and other non-source-code elements. - -## Usage - -To utilize the settings provided by these files, simply open the project using IntelliJ IDEA. The IDE will automatically recognize and apply these configurations. This ensures that every contributor to the project adheres to the same configurations, leading to a standardized development environment. - -## Customization - -It is important to note that some files like `dataSources.local.xml` are intended for personal use and should not be checked into version control to avoid overwriting team members' local settings. Always check with your team before making changes to shared configuration files in this directory. - -## Best Practices - -- **Do not delete** this directory or its contents unless you are certain of how it will affect your project. -- **Keep sensitive information secure** by not including plaintext passwords or other sensitive data in these configuration files. -- **Review changes** to these files before committing them to version control to prevent the introduction of unwanted settings changes to team members. - -## Version Control Considerations - -Typically, the `.idea` directory is included in version control with the exception of user-specific files such as `workspace.xml` or `tasks.xml`, which store user-specific IDE states and are not present here. This inclusion ensures that all developers working on the project have a consistent set of configurations. - -## Contact - -If you have any concerns, please feel free to contact us at [info@movie-verse.com](mailto:info@movie-verse.com). diff --git a/.idea/The-MovieVerse-Database.iml b/.idea/The-MovieVerse-Database.iml deleted file mode 100644 index 20809fd4..00000000 --- a/.idea/The-MovieVerse-Database.iml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/dataSources.local.xml b/.idea/dataSources.local.xml deleted file mode 100644 index 2f1b8180..00000000 --- a/.idea/dataSources.local.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - #@ - ` - - - master_key - root - - - - - - - - \ No newline at end of file diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml deleted file mode 100644 index 14938c3f..00000000 --- a/.idea/dataSources.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - mysql.8 - true - com.mysql.cj.jdbc.Driver - jdbc:mysql://localhost:3306 - $ProjectFileDir$ - - - \ No newline at end of file diff --git a/.idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3.xml b/.idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3.xml deleted file mode 100644 index eaacfade..00000000 --- a/.idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3.xml +++ /dev/null @@ -1,942 +0,0 @@ - - - - - - armscii8 - 1 - - - armscii8 - - - ascii - 1 - - - ascii - - - big5 - 1 - - - big5 - - - binary - 1 - - - cp1250 - 1 - - - cp1250 - - - cp1250 - - - cp1250 - - - cp1250 - - - cp1251 - - - cp1251 - - - cp1251 - - - cp1251 - 1 - - - cp1251 - - - cp1256 - 1 - - - cp1256 - - - cp1257 - - - cp1257 - - - cp1257 - 1 - - - cp850 - 1 - - - cp850 - - - cp852 - 1 - - - cp852 - - - cp866 - 1 - - - cp866 - - - cp932 - 1 - - - cp932 - - - dec8 - 1 - - - dec8 - - - eucjpms - 1 - - - eucjpms - - - euckr - 1 - - - euckr - - - gb18030 - 1 - - - gb18030 - - - gb18030 - - - gb2312 - 1 - - - gb2312 - - - gbk - 1 - - - gbk - - - geostd8 - 1 - - - geostd8 - - - greek - 1 - - - greek - - - hebrew - 1 - - - hebrew - - - hp8 - 1 - - - hp8 - - - keybcs2 - 1 - - - keybcs2 - - - koi8r - 1 - - - koi8r - - - koi8u - 1 - - - koi8u - - - latin1 - - - latin1 - 1 - - - latin1 - - - latin1 - - - latin1 - - - latin1 - - - latin1 - - - latin1 - - - latin2 - - - latin2 - 1 - - - latin2 - - - latin2 - - - latin2 - - - latin5 - 1 - - - latin5 - - - latin7 - - - latin7 - 1 - - - latin7 - - - latin7 - - - macce - 1 - - - macce - - - macroman - 1 - - - macroman - - - sjis - 1 - - - sjis - - - swe7 - 1 - - - swe7 - - - tis620 - 1 - - - tis620 - - - ucs2 - 1 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ujis - 1 - - - ujis - - - utf16 - 1 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16le - 1 - - - utf16le - - - utf32 - 1 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf8mb3 - 1 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - 1 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4_0900_ai_ci - - - utf8mb3_general_ci - - - utf8mb4_0900_ai_ci - - - utf8mb4_0900_ai_ci - - - utf8mb4_0900_ai_ci - - - utf8mb4_0900_ai_ci - - - 0 - localhost - caching_sha2_password - - - 0 - localhost - caching_sha2_password - - - 0 - localhost - caching_sha2_password - - - localhost - caching_sha2_password - - - \ No newline at end of file diff --git a/.idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3/storage_v2/_src_/schema/information_schema.FNRwLQ.meta b/.idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3/storage_v2/_src_/schema/information_schema.FNRwLQ.meta deleted file mode 100644 index 1ff3db2e..00000000 --- a/.idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3/storage_v2/_src_/schema/information_schema.FNRwLQ.meta +++ /dev/null @@ -1,2 +0,0 @@ -#n:information_schema -! [null, 0, null, null, -2147483648, -2147483648] diff --git a/.idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3/storage_v2/_src_/schema/mysql.osA4Bg.meta b/.idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3/storage_v2/_src_/schema/mysql.osA4Bg.meta deleted file mode 100644 index 86a53f19..00000000 --- a/.idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3/storage_v2/_src_/schema/mysql.osA4Bg.meta +++ /dev/null @@ -1,2 +0,0 @@ -#n:mysql -! [null, 0, null, null, -2147483648, -2147483648] diff --git a/.idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3/storage_v2/_src_/schema/performance_schema.kIw0nw.meta b/.idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3/storage_v2/_src_/schema/performance_schema.kIw0nw.meta deleted file mode 100644 index 9394db14..00000000 --- a/.idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3/storage_v2/_src_/schema/performance_schema.kIw0nw.meta +++ /dev/null @@ -1,2 +0,0 @@ -#n:performance_schema -! [null, 0, null, null, -2147483648, -2147483648] diff --git a/.idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3/storage_v2/_src_/schema/sys.zb4BAA.meta b/.idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3/storage_v2/_src_/schema/sys.zb4BAA.meta deleted file mode 100644 index 2f4470bb..00000000 --- a/.idea/dataSources/791709d9-b4c0-4b2f-87d0-642aa59a89d3/storage_v2/_src_/schema/sys.zb4BAA.meta +++ /dev/null @@ -1,2 +0,0 @@ -#n:sys -! [null, 0, null, null, -2147483648, -2147483648] diff --git a/.idea/dbnavigator.xml b/.idea/dbnavigator.xml deleted file mode 100644 index c362f6ef..00000000 --- a/.idea/dbnavigator.xml +++ /dev/null @@ -1,403 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/jsLibraryMappings.xml b/.idea/jsLibraryMappings.xml deleted file mode 100644 index 163a899d..00000000 --- a/.idea/jsLibraryMappings.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 7d0fc1d0..00000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1ddf..00000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/watcherTasks.xml b/.idea/watcherTasks.xml deleted file mode 100644 index 42014037..00000000 --- a/.idea/watcherTasks.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - \ No newline at end of file