diff --git a/.env.example b/.env.example index 3fd7d4f..a0b0942 100644 --- a/.env.example +++ b/.env.example @@ -6,7 +6,7 @@ DISCORD_CLIENT_ID="" DISCORD_GUILD_ID="" # Database -MONGO_URL="mongodb+srv://username:password@host/database?retryWrites=true&w=majority" +DATABASE_URL="file:./production.db" # Encryption ENCRYPTION_ALGORITHM="aes-256-ctr" diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index 76add87..0000000 --- a/.eslintignore +++ /dev/null @@ -1,2 +0,0 @@ -node_modules -dist \ No newline at end of file diff --git a/.eslintrc.json b/.eslintrc.json deleted file mode 100644 index 39d4adc..0000000 --- a/.eslintrc.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "root": true, - "parser": "@typescript-eslint/parser", - "plugins": ["@typescript-eslint", "no-loops", "prettier"], - "extends": [ - "eslint:recommended", - "plugin:@typescript-eslint/eslint-recommended", - "plugin:@typescript-eslint/recommended", - "prettier" - ], - "rules": { - "no-console": 1, - "no-loops/no-loops": 2 - } -} diff --git a/.gitignore b/.gitignore index fe6928b..1ab52e9 100644 --- a/.gitignore +++ b/.gitignore @@ -145,6 +145,3 @@ dist # Docker database docker-compose.local.yml - -# Prisma -prisma/*.db* \ No newline at end of file diff --git a/SECURITY.md b/SECURITY.md deleted file mode 100644 index 4933326..0000000 --- a/SECURITY.md +++ /dev/null @@ -1,14 +0,0 @@ -# Security Policy - -## Supported Versions - -| Version | Supported | -| ---------- | ------------------ | -| 2022.4.x | :white_check_mark: | -| < 2022.4.x | :x: | - -## Reporting a Vulnerability - -Report a security issue to Vermium#9649 on discord or vermium@zyner.org - -I will try to fix the vulnerability within a month, often in some days only. If vulnerability is declined then still don't abuse it in any way you can. diff --git a/prisma/.gitignore b/prisma/.gitignore new file mode 100644 index 0000000..03f6f26 --- /dev/null +++ b/prisma/.gitignore @@ -0,0 +1,2 @@ +*.db +*.db-journal \ No newline at end of file