📦 EqualifyEverything / equalify-iris-wp

📄 .gitignore · 36 lines
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# The test WordPress instance is disposable and is not part of this repo.
#
# What IS committed is the small amount of scaffolding that builds it: the DDEV config,
# the setup scripts, and the sample-PDF generator. Everything they produce is ignored.
# So a clone of this repo has no WordPress in it, and one run of test-site/setup.sh
# gives you a working one.

# WordPress core, wp-config.php, uploads, the lot.
test-site/wp/*
!test-site/wp/.gitkeep

# Generated sample PDFs.
test-site/samples/

# DDEV writes its own .ddev/.gitignore listing the files it generates, so the config
# we hand-wrote stays tracked and the generated ones do not. Nothing needed here.

# Anything else a local WordPress leaves lying about.
*.sql
*.sql.gz
debug.log

# Editor and operating system litter.
.DS_Store
.idea/
.vscode/
*.swp
*.swo
*~

# Never in a repo.
node_modules/
vendor/
.env
.env.*