Skip to content

Commit

Permalink
moved ccxt.wiki
Browse files Browse the repository at this point in the history
  • Loading branch information
xpl committed Feb 28, 2019
1 parent 8dda8aa commit 57bf32f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# Please read https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#multilanguage-support for details.
#
.vscode
build/ccxt.wiki
node_modules/
npm-debug.log
.DS_Store
Expand All @@ -16,7 +17,6 @@ tmp/
coverage
.nyc_output
travis-keys.sh
ccxt.wiki/
exchanges.json
ccxt.sublime-workspace
.idea
Expand Down
1 change: 0 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
ccxt.egg-info/
ccxt.wiki/
dist/
build/
examples/php/
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ script:
- if [ "$TESTS_FAILED" -ne 0 ]; then exit 1; fi
# - export TWINE_REPOSITORY_URL=https://pypi.python.org/pypi
- if [ "$TRAVIS_PULL_REQUEST" = "false" ] && [ "$TRAVIS_BRANCH" = "master" ]; then env COMMIT_MESSAGE=${NPM_VERSION:1} GITHUB_TOKEN=${GITHUB_TOKEN} ./push.sh; fi
- if [ "$TRAVIS_PULL_REQUEST" = "false" ] && [ "$TRAVIS_BRANCH" = "master" ]; then env COMMIT_MESSAGE=${NPM_VERSION:1} GITHUB_TOKEN=${GITHUB_TOKEN} ./push-wiki.sh; fi
- if [ "$TRAVIS_PULL_REQUEST" = "false" ] && [ "$TRAVIS_BRANCH" = "master" ]; then env COMMIT_MESSAGE=${NPM_VERSION:1} GITHUB_TOKEN=${GITHUB_TOKEN} ./build/push-wiki.sh; fi
- if [ "$TRAVIS_PULL_REQUEST" = "false" ] && [ "$TRAVIS_BRANCH" = "master" ]; then cd python && env PYPI_PASSWORD=${PYPI_PASSWORD} ./deploy.sh && cd ..; fi
after_failure:
- dmesg | grep -i kill
Expand Down
4 changes: 2 additions & 2 deletions build/export-exchanges.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ let verbose = false
// ---------------------------------------------------------------------------

let wikiPath = 'wiki'
let gitWikiPath = 'ccxt.wiki'
let gitWikiPath = 'build/ccxt.wiki'
let ccxtCertifiedBadge = '[![CCXT Certified](https://img.shields.io/badge/CCXT-certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification)'
let spacing = ' '.repeat (7)
let logoHeading = spacing + 'logo' + spacing
Expand All @@ -25,7 +25,7 @@ let exchangesByCountryHeading = [ 'country / region', ... tableHeadings ]

if (!fs.existsSync (gitWikiPath)) {
log.bright.cyan ('Checking out ccxt.wiki...')
execSync ('git clone https://github.com/ccxt/ccxt.wiki.git')
execSync ('git clone https://github.com/ccxt/ccxt.wiki.git ' + gitWikiPath)
}

// ---------------------------------------------------------------------------
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -241,11 +241,11 @@
"archive": {
"exclude": [
"/build",
"/dist",
"/doc",
"/js",
"/python",
"/wiki",
"/ccxt.wiki"
"/wiki"
]
},
"require-dev": {
Expand Down

0 comments on commit 57bf32f

Please sign in to comment.