File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # These are some examples of commonly ignored file patterns.
2+ # You should customize this list as applicable to your project.
3+ # Learn more about .gitignore:
4+ # https://www.atlassian.com/git/tutorials/saving-changes/gitignore
5+
6+ # Node artifact files
7+ node_modules /
8+ dist /
9+
10+ # Compiled Java class files
11+ * .class
12+
13+ # Compiled Python bytecode
14+ * .py [cod ]
15+
16+ # Log files
17+ * .log
18+
19+ # Package files
20+ * .jar
21+
22+ # Maven
23+ target /
24+ dist /
25+
26+ # JetBrains IDE
27+ .idea /
28+
29+ # Unit test reports
30+ TEST * .xml
31+
32+ # Generated by MacOS
33+ .DS_Store
34+
35+ # Generated by Windows
36+ Thumbs.db
37+
38+ # Applications
39+ * .app
40+ * .exe
41+ * .war
42+
43+ # Large media files
44+ * .mp4
45+ * .tiff
46+ * .avi
47+ * .flv
48+ * .mov
49+ * .wmv
50+
Original file line number Diff line number Diff line change 1+ # README #
2+
3+ This README would normally document whatever steps are necessary to get your application up and running.
4+
5+ ### What is this repository for? ###
6+
7+ * Quick summary
8+ * Version
9+ * [ Learn Markdown] ( https://bitbucket.org/tutorials/markdowndemo )
10+
11+ ### How do I get set up? ###
12+
13+ * Summary of set up
14+ * Configuration
15+ * Dependencies
16+ * Database configuration
17+ * How to run tests
18+ * Deployment instructions
19+
20+ ### Contribution guidelines ###
21+
22+ * Writing tests
23+ * Code review
24+ * Other guidelines
25+
26+ ### Who do I talk to? ###
27+
28+ * Repo owner or admin
29+ * Other community or team contact
You can’t perform that action at this time.
0 commit comments