-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
38 lines (34 loc) · 797 Bytes
/
.gitignore
File metadata and controls
38 lines (34 loc) · 797 Bytes
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
# Daphne Ignores
#
# We always ignore these 4 types
# of files:
#
# - Dependancies
# - System/IDE generated files
# - Environment files
# - Build results
# Dependancies
#
# These should be installed on each
# system on initial clone. No need to
# bloat the repo by tracking them.
node_modules/
# System files
#
# No one needs your .DS_Store file or
# your IDE's project config file except you.
.DS_Store
# Environment files
#
# Not everyone uses nvm and devs should be
# free to use whichever Node version they have
# installed provided it meets the minimum
# requirements for the app to run.
.nvmrc
# Build results
#
# Git repositories are for development code.
# We should be distributing pre-packaged, built
# versions of the app separately. In this case
# npm is the way to do this.
dist/