forked from westand/STiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
47 lines (38 loc) · 1.22 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#############################################################################
#
# Andrew G. West - .gitignore - Files which should not be transferred from
# the local copy to the Git repository.
#
# This includes local settings files and those with sensitive data
#
#############################################################################
# These classes have the credentials for the database connection. An
# example with redacted data is stored in the [deploy_source/] directory
/db_client/stiki_con_client.java
/db_server/stiki_con_server.java
# This class has credentials for the IRC server so the program always has
# moderator access over the needed channels. An example with dedacted data
# is stored in the [deploy_source/] directory
/irc_work/irc_output.java
# Credentials encoded into shell scripts
/api/stiki_api.php
/backup/backup.sh
# Do not upload analysis scripts
/analysis/*
# We don't need to include the Java build
*.class
/out/*
#nor should we include the prebuilt zip
/deploy_gui/*.zip
# Settings files specific to local machine
.classpath
.project
.metadata
*.tmp
*.bak
*.swp
local.properties
.settings/
.idea/*
*.iml
##### END ###################################################################