Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
7 changes: 7 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.git
.dockerignore
Dockerfile
node_modules
vendor
*.swp
*.pyc
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build/*
7 changes: 7 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
*.* text eol=lf
php/test/*.php linguist-generated=true
php/*.php linguist-generated=true
php/abstract/*.php linguist-generated=true
php/async/abstract/*.php linguist-generated=true
php/pro/*.php linguist-generated=true
*.png binary
45 changes: 45 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@

# You shouldn't edit these files, as they're generated automatically from ccxt.js by build scripts.
# Please read https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#multilanguage-support for details.
#
.vs
.vscode
build/ccxt.wiki
node_modules/
npm-debug.log
.DS_Store
config.js
config.py
config.php
ccxt.egg-info/
tmp/
*.pyc
.tox/
coverage
.nyc_output
travis-keys.sh
exchanges.json
ccxt.sublime-workspace
.idea
yarn.lock
keys.local.json
nbproject/
vendor/
python/build
python/dist
python/package-lock.json
python/package.json
python/keys.json
python/LICENSE.txt
__pycache__
.env
*.swp
.cache
*.log
*.un~
*.pyc
bin/
obj/
__debug*
*.o
.custom_gitignore
22 changes: 22 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Initally ignore all files
*

# Files to include
!package.json
!package-lock.json
!postinstall.js
!LICENSE.txt
!README.md

# Folders to include
!js/**/*
!dist/**/*

# Ignore tests
js/src/test/**/*
js/src/pro/test/**/*

#Ignore browser bundle
dist/ccxt.browser.js
!dist/ccxt.browser.min.js
!dist/ccxt.browser.min.js.LICENSE.txt
11,952 changes: 11,952 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @kroitor @frosty00 @carlosmiei @xlassix
Loading