Skip to content

Commit a0fcd4a

Browse files
committed
New .gitignore
Added the ability to share common setting between IDE --------- Thanks to Jetbrains, for Sponsoring My Privacy DNS with their Open Source software licenses. Their software helps us develop and maintain My Privacy DNS and other project as they made writing code easier.
1 parent 23363f4 commit a0fcd4a

File tree

7 files changed

+152
-1
lines changed

7 files changed

+152
-1
lines changed

.gitignore

Lines changed: 93 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,94 @@
11
.pyfunceble/.pyfunceble-env
2-
.idea/**
2+
3+
# VSCode (Visual Basic Code)
4+
**.code-workspace
5+
no-git/**
6+
!.vscode/settings.json
7+
!.vscode/tasks.json
8+
!.vscode/launch.json
9+
!.vscode/extensions.json
10+
!.vscode/*.code-snippets
11+
12+
# Local History for Visual Studio Code
13+
.history/
14+
15+
# Built Visual Studio Code Extensions
16+
*.vsix
17+
18+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
19+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
20+
21+
# User-specific stuff
22+
.idea/**/workspace.xml
23+
.idea/**/tasks.xml
24+
.idea/**/usage.statistics.xml
25+
.idea/**/dictionaries
26+
.idea/**/shelf
27+
28+
# AWS User-specific
29+
.idea/**/aws.xml
30+
31+
# Generated files
32+
.idea/**/contentModel.xml
33+
34+
# Sensitive or high-churn files
35+
.idea/**/dataSources/
36+
.idea/**/dataSources.ids
37+
.idea/**/dataSources.local.xml
38+
.idea/**/sqlDataSources.xml
39+
.idea/**/dynamic.xml
40+
.idea/**/uiDesigner.xml
41+
.idea/**/dbnavigator.xml
42+
43+
# Gradle
44+
.idea/**/gradle.xml
45+
.idea/**/libraries
46+
47+
# Gradle and Maven with auto-import
48+
# When using Gradle or Maven with auto-import, you should exclude module files,
49+
# since they will be recreated, and may cause churn. Uncomment if using
50+
# auto-import.
51+
# .idea/artifacts
52+
# .idea/compiler.xml
53+
# .idea/jarRepositories.xml
54+
# .idea/modules.xml
55+
# .idea/*.iml
56+
# .idea/modules
57+
# *.iml
58+
# *.ipr
59+
60+
# CMake
61+
cmake-build-*/
62+
63+
# Mongo Explorer plugin
64+
.idea/**/mongoSettings.xml
65+
66+
# File-based project format
67+
*.iws
68+
69+
# IntelliJ
70+
out/
71+
72+
# mpeltonen/sbt-idea plugin
73+
.idea_modules/
74+
75+
# JIRA plugin
76+
atlassian-ide-plugin.xml
77+
78+
# Cursive Clojure plugin
79+
.idea/replstate.xml
80+
81+
# SonarLint plugin
82+
.idea/sonarlint/
83+
84+
# Crashlytics plugin (for Android Studio and IntelliJ)
85+
com_crashlytics_export_strings.xml
86+
crashlytics.properties
87+
crashlytics-build.properties
88+
fabric.properties
89+
90+
# Editor-based Rest Client
91+
.idea/httpRequests
92+
93+
# Android studio 3.1+ serialized cache file
94+
.idea/caches/build_file_checksums.ser

.idea/.gitignore

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/phishing.iml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.pyfunceble/.pyfunceble-env.example

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Copy this file as .pyfunceble/.pyfunceble-env and fill out the fields
2+
PYFUNCEBLE_DB_CHARSET=utf8mb4
3+
PYFUNCEBLE_DB_HOST=
4+
PYFUNCEBLE_DB_NAME=
5+
PYFUNCEBLE_DB_PASSWORD=''
6+
PYFUNCEBLE_DB_PORT=
7+
PYFUNCEBLE_DB_USERNAME=
8+
PYFUNCEBLE_OUTPUT_LOCATION=
9+
PYFUNCEBLE_PLATFORM_API_URL=https://api.beta.dead-hosts.com
10+
PYFUNCEBLE_PLATFORM_API_TOKEN=""
11+
PYFUNCEBLE_AUTO_CONFIGURATION=yes
12+
PYFUNCEBLE_PLATFORM_CHECKER_EXCLUDE=

0 commit comments

Comments
 (0)