-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
76 lines (65 loc) · 2.19 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#------------------------------------------------------------
# [[APP_NAME]] ([[APP_URL]])
#
# @link [[APP_REPOSITORY_URL]]
# @copyright Copyright (c) [[COPYRIGHT_YEAR]] [[COPYRIGHT_HOLDER]]
# @license [[LICENSE_URL]] ([[LICENSE]])
#-------------------------------------------------------------
#----------------------------------------------
# Ignore any application configuration
#----------------------------------------------
config/config.json
#----------------------------------------------
# Ignore Apache any configuration
#----------------------------------------------
public/.htaccess
#----------------------------------------------
# Ignore generated binary executable
#----------------------------------------------
bin/app.cgi
public/app.cgi
cgi-bin/app.cgi
#----------------------------------------------
# Ignore generated log files
#----------------------------------------------
storages/logs/*
#----------------------------------------------
# Do not ignore README.md
# This file is provided so Git can create
# storages/logs directory when this repository
# is cloned.
#----------------------------------------------
!storages/logs/README.md
#----------------------------------------------
# Ignore compiler switches configurations
#----------------------------------------------
build.cfg
build.dev.cfg
build.prod.cfg
#----------------------------------------------
# Ignore all generated compiled units files
#----------------------------------------------
bin/unit/*
#----------------------------------------------
# Do not ignore README.md
# This file is provided so Git can create
# bin/unit directory when this repository
# is cloned.
#----------------------------------------------
!bin/README.md
!bin/unit/README.md
#----------------------------------------------
# Ignore Free Pascal built-in console IDE generated files
#----------------------------------------------
fp.dir
fp.cfg
fp.dsk
fp.ini
#----------------------------------------------
# Ignore Lazarus local files (user-specific info)
#----------------------------------------------
*.lps
#----------------------------------------------
# Ignore Visual Studio Code generated files
#----------------------------------------------
.vscode/