Skip to content

Commit 76badf9

Browse files
committed
Initial commit
0 parents  commit 76badf9

2 files changed

Lines changed: 79 additions & 0 deletions

File tree

.gitignore

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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+

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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

0 commit comments

Comments
 (0)