Skip to content

Commit ea8322f

Browse files
committed
Initial commit
0 parents  commit ea8322f

File tree

5 files changed

+959
-0
lines changed

5 files changed

+959
-0
lines changed

.gitignore

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# sphinx build directories
2+
_build/
3+
4+
# dotfiles
5+
.*
6+
!.gitignore
7+
!.mailmap
8+
# compiled python files
9+
*.py[co]
10+
__pycache__/
11+
# setup.py egg_info
12+
*.egg-info
13+
# emacs backup files
14+
*~
15+
# hg stuff
16+
*.orig
17+
status
18+
19+
# js tooling
20+
node_modules
21+
jsconfig.json
22+
tsconfig.json
23+
package-lock.json
24+
package.json
25+
.husky
26+
27+
# various virtualenv
28+
/bin/
29+
/build/
30+
/dist/
31+
/include/
32+
/lib/
33+
/man/
34+
/share/
35+
/src/
36+
37+
#PyDev
38+
.project
39+
.pydevproject

CONTRIBUTING.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Contributing to Odoo
2+
====================
3+
4+
[Full contribution guidelines](https://github.com/odoo/odoo/wiki/Contributing)
5+
6+
TL;DR
7+
8+
* If you [make a pull request](https://github.com/odoo/odoo/wiki/Contributing#making-pull-requests),
9+
do not create an issue! Use the PR description for that
10+
* Issues are handled with a much lower priority than pull requests
11+
* Use this [template](https://github.com/odoo/odoo/tree/master/.github/ISSUE_TEMPLATE.md)
12+
when reporting issues. Please search for duplicates first!
13+
* Pull requests must be made against the [correct version](https://github.com/odoo/odoo/wiki/Contributing#against-which-version-should-i-submit-a-patch)
14+
* There are restrictions on the kind of [changes allowed in stable series](https://github.com/odoo/odoo/wiki/Contributing#what-does-stable-mean)

COPYRIGHT

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
Most of the files are
3+
4+
Copyright (c) 2023 Odoo S.A.
5+
6+
Many files also contain contributions from third
7+
parties. In this case the original copyright of
8+
the contributions can be traced through the
9+
history of the source version control system.
10+
11+
When that is not the case, the files contain a prominent
12+
notice stating the original copyright and applicable
13+
license, or come with their own dedicated COPYRIGHT
14+
and/or LICENSE file.
15+

0 commit comments

Comments
 (0)