Skip to content

Commit 77aea3d

Browse files
authored
Merge pull request #1 from usherlabs/develop
Develop
2 parents 08a1af2 + b6d1379 commit 77aea3d

File tree

3,019 files changed

+2243564
-649
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,019 files changed

+2243564
-649
lines changed

.dockerignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.git
2+
.dockerignore
3+
Dockerfile
4+
node_modules
5+
vendor
6+
*.swp
7+
*.pyc

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build/*

.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
*.* text eol=lf
2+
php/test/*.php linguist-generated=true
3+
php/*.php linguist-generated=true
4+
php/abstract/*.php linguist-generated=true
5+
php/async/abstract/*.php linguist-generated=true
6+
php/pro/*.php linguist-generated=true
7+
*.png binary

.gitignore

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
2+
# You shouldn't edit these files, as they're generated automatically from ccxt.js by build scripts.
3+
# Please read https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#multilanguage-support for details.
4+
#
5+
.vs
6+
.vscode
7+
build/ccxt.wiki
8+
node_modules/
9+
npm-debug.log
10+
.DS_Store
11+
config.js
12+
config.py
13+
config.php
14+
ccxt.egg-info/
15+
tmp/
16+
*.pyc
17+
.tox/
18+
coverage
19+
.nyc_output
20+
travis-keys.sh
21+
exchanges.json
22+
ccxt.sublime-workspace
23+
.idea
24+
yarn.lock
25+
keys.local.json
26+
nbproject/
27+
vendor/
28+
python/build
29+
python/dist
30+
python/package-lock.json
31+
python/package.json
32+
python/keys.json
33+
python/LICENSE.txt
34+
__pycache__
35+
.env
36+
*.swp
37+
.cache
38+
*.log
39+
*.un~
40+
*.pyc
41+
bin/
42+
obj/
43+
__debug*
44+
*.o
45+
.custom_gitignore

.npmignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Initally ignore all files
2+
*
3+
4+
# Files to include
5+
!package.json
6+
!package-lock.json
7+
!postinstall.js
8+
!LICENSE.txt
9+
!README.md
10+
11+
# Folders to include
12+
!js/**/*
13+
!dist/**/*
14+
15+
# Ignore tests
16+
js/src/test/**/*
17+
js/src/pro/test/**/*
18+
19+
#Ignore browser bundle
20+
dist/ccxt.browser.js
21+
!dist/ccxt.browser.min.js
22+
!dist/ccxt.browser.min.js.LICENSE.txt

CHANGELOG.md

Lines changed: 11952 additions & 0 deletions
Large diffs are not rendered by default.

CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @kroitor @frosty00 @carlosmiei @xlassix

0 commit comments

Comments
 (0)