Skip to content
This repository was archived by the owner on Feb 22, 2024. It is now read-only.
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,13 @@ branches:
- master
- development
before_install:
- npm i -g npm@6.7.0
- npm ci
- yarn
install:
- npm run build
- yarn build
after_success:
- git config --global user.email "oskar@binary.com"
- git config --global user.name "OskarAhl"
- npm run deploy-gh-pages
- yarn deploy-gh-pages
env:
global:
- secure: VkC8JcM0fpaYehywEI5kiP/1Ui+lfVfHRWSNMAbJqIeumpzdYLc8x9ws3DJLkufiohmDv+e2lArpwU5rMTKCELquhdWzKPKQT4Dkt58CC45TggE6rEDqeR9lNQpvNwircJ3y4rvlDrpPNuZ2G7HH+2l+JUrwAOwS1/UOKdSkghci1eGX/OlqyE84nEKHBlD0JnvkS7tQquhhAtMtT/+1ENK4Ku6oMUQpgABjaxoquCCOnzFvTYJKa3aPQ6p1yNQgP9KJCnMTjvJ+1p8RngunnYbeT5Eyvndb7IY68/3uFQgJTenfGA9sT3Nh5Roy6sO7Sk/jhqndxPXmku50otW0XwMPC+lHmBNi9u+5k3NwVzGfho9/vwdr1M9sRd9PWx1OjOcwsXw7xu6pU541pgGEbsW0qBKZ9gt3atR3EBsseovCQUagORtpb4GcXJRShrnrRlPIq6iZNIs+CQVy9iJqQEz+6UODJNNFL5NuhTvfgdw1qrHqO0gUybXcDC6HZPVJx0NqrM6F2TgLnusN5HaO7PEiPM90DCkwSpyKFyx7O4GUw8vGPQG2AYzUitO5pyUc4sLRX7v/MsU9kypqa8UWONam7DhofHJonLhbNpnS2yeSrGZ+DRJlIhmOX7FWpJooSZoi/hZoW8Mt3uGYgSMIe6IRu+cJXwJHGa9lAkKLrTU=
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ The goal of this project is to create a full-screen trading interface for [Binar

* git
* node JS
* npm
* yarn

## How to work with this project

$ git clone https://github.com/binary-com/webtrader.git
$ cd webtrader
$ npm install
$ npm run build #compiles the project
$ npm start #Start a local server and serve the compiled files
$ yarn install
$ yarn build #compiles the project
$ yarn start #Start a local server and serve the compiled files

Running this command will launch local server at http://localhost:9001

Expand All @@ -42,11 +42,11 @@ Now you can debug your app on https://webtrader.local/ locally.

To bump release version, run

$ npm major-rel
$ yarn major-rel
or
$ npm minor-rel
$ yarn minor-rel
or
$ npm patch-rel
$ yarn patch-rel

Every check-in or merge into master will trigger travis-ci build and do a release to production.

Expand All @@ -58,7 +58,7 @@ Translation related files are in `/translations` folder.

To extract text for translation:

$ npm run build
$ yarn build
$ cd ./translations
$ python extract.py
$ extract.py # extracts string literals from `dist/uncompressed` (from *.html and *.js)
Expand Down
Loading