Current project is already obsolete and evolved into FinCore application where Backend Server and Frontend Client tied together in one .NET Core + Angular application. New application can be downloaded here: FinCore
XTrade Web is an Angular web frontend application to manage XTrade Server. It is a web UI Admin console application.
Application features list is in Readme.pdf file in root folder.
How to build/run:
- npm install
- Edit the following file:
\node_modules\jszip\lib\Readable-stream-browser.js
comment line: // module.exports = require("stream");
-
npm install
-
to run website execute the following command: ng serve
-
for production build edit base host url in this file /src/assets/config.json
"baseURL.Prod": "http://host_name:2013",
"baseURL.Dev": "http://localhost:2013",
To build production version run command
ng build --prod --aot --no-progress
- copy generated dist/* folder with all contents to XTradeServer_root/ folder In this case application will be self hosted by XTrade server windows service
Link to main server application repository: XTradeServer