Parcourir la source

Initial commit

ling_yun il y a 1 an
révision
efa4efd4e6
2 fichiers modifiés avec 156 ajouts et 0 suppressions
  1. 154
    0
      .gitignore
  2. 2
    0
      README.md

+ 154
- 0
.gitignore Voir le fichier

@@ -0,0 +1,154 @@
1
+# ---> C++
2
+# Prerequisites
3
+*.d
4
+
5
+# Compiled Object files
6
+*.slo
7
+*.lo
8
+*.o
9
+*.obj
10
+
11
+# Precompiled Headers
12
+*.gch
13
+*.pch
14
+
15
+# Compiled Dynamic libraries
16
+*.so
17
+*.dylib
18
+*.dll
19
+
20
+# Fortran module files
21
+*.mod
22
+*.smod
23
+
24
+# Compiled Static libraries
25
+*.lai
26
+*.la
27
+*.a
28
+*.lib
29
+
30
+# Executables
31
+*.exe
32
+*.out
33
+*.app
34
+
35
+# ---> Java
36
+# Compiled class file
37
+*.class
38
+
39
+# Log file
40
+*.log
41
+
42
+# BlueJ files
43
+*.ctxt
44
+
45
+# Mobile Tools for Java (J2ME)
46
+.mtj.tmp/
47
+
48
+# Package Files #
49
+*.jar
50
+*.war
51
+*.ear
52
+*.zip
53
+*.tar.gz
54
+*.rar
55
+
56
+# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
57
+hs_err_pid*
58
+
59
+# ---> Python
60
+# Byte-compiled / optimized / DLL files
61
+__pycache__/
62
+*.py[cod]
63
+*$py.class
64
+
65
+# C extensions
66
+*.so
67
+
68
+# Distribution / packaging
69
+.Python
70
+env/
71
+build/
72
+develop-eggs/
73
+dist/
74
+downloads/
75
+eggs/
76
+.eggs/
77
+lib/
78
+lib64/
79
+parts/
80
+sdist/
81
+var/
82
+wheels/
83
+*.egg-info/
84
+.installed.cfg
85
+*.egg
86
+
87
+# PyInstaller
88
+#  Usually these files are written by a python script from a template
89
+#  before PyInstaller builds the exe, so as to inject date/other infos into it.
90
+*.manifest
91
+*.spec
92
+
93
+# Installer logs
94
+pip-log.txt
95
+pip-delete-this-directory.txt
96
+
97
+# Unit test / coverage reports
98
+htmlcov/
99
+.tox/
100
+.coverage
101
+.coverage.*
102
+.cache
103
+nosetests.xml
104
+coverage.xml
105
+*,cover
106
+.hypothesis/
107
+
108
+# Translations
109
+*.mo
110
+*.pot
111
+
112
+# Django stuff:
113
+*.log
114
+local_settings.py
115
+
116
+# Flask stuff:
117
+instance/
118
+.webassets-cache
119
+
120
+# Scrapy stuff:
121
+.scrapy
122
+
123
+# Sphinx documentation
124
+docs/_build/
125
+
126
+# PyBuilder
127
+target/
128
+
129
+# Jupyter Notebook
130
+.ipynb_checkpoints
131
+
132
+# pyenv
133
+.python-version
134
+
135
+# celery beat schedule file
136
+celerybeat-schedule
137
+
138
+# SageMath parsed files
139
+*.sage.py
140
+
141
+# dotenv
142
+.env
143
+
144
+# virtualenv
145
+.venv
146
+venv/
147
+ENV/
148
+
149
+# Spyder project settings
150
+.spyderproject
151
+
152
+# Rope project settings
153
+.ropeproject
154
+

+ 2
- 0
README.md Voir le fichier

@@ -0,0 +1,2 @@
1
+# GreatWorld
2
+