mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-18 07:26:50 +00:00
40 lines
919 B
Markdown
40 lines
919 B
Markdown
## GoCryptoTrader website
|
|
A website interface to interact with the main gocryptotrader application
|
|
|
|
## Current Features
|
|
+ Basic web views
|
|
+ Interaction between gocryptotrader and gocryptotraderweb
|
|
|
|
## Planned Features
|
|
+ Dashboard with details such as purchase history, current exchange holdings and tickers
|
|
+ Settings configuration within website - no need to edit .json files
|
|
+ Perform transactions
|
|
+ Themes
|
|
|
|
It's early days for the front-end website. So this readme will be updated periodically to reflect any changes
|
|
|
|
### Prerequisites
|
|
|
|
You can get git from [http://git-scm.com/](http://git-scm.com/).
|
|
|
|
You must have node.js and its package manager (npm) installed. You can get them from [http://nodejs.org/](http://nodejs.org/).
|
|
### Install Dependencies
|
|
|
|
```
|
|
npm install
|
|
```
|
|
|
|
|
|
### Run the Application
|
|
|
|
The simplest way to start this server is:
|
|
|
|
```
|
|
npm start
|
|
```
|
|
|
|
Now browse to the app at `http://localhost/`.
|
|
|
|
|
|
|