This is the official web-based Finch management console.
Note: Finch is currently in beta form and may change significantly before version 1.0 is released.
Try public demo of Finch and this Management Console.
- nodejs
- npm
$ git clone https://github.com/finch-tech/finch-management-console
$ npm install
$ API_PROTOCOL=<YOUR_API_PROTOCOL> API_HOST=<YOUR_API_HOST> API_PORT=<YOUR_API_PORT> npm run build
This creates finch-management-console.js
file in the dist
subdirectory.
The management console consists of a single JavaScript file (finch-management-console.js
).
Therefore all you need to do is to serve a static HTML with a mount point(<div id="app" />
) that loads the finch-management-console.js
.
Example HTML:
<html>
<head>
<title></title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
</head>
<body>
<div id="app"></div>
<script src="/PATH_TO/finch-management-console.js"></script>
</body>
</html>
Here is the step-by-step guide on how to set up your store on the management console.
- Documentation
- Finch Installation Guide
- Finch Getting Started Guide (Store Setup and Integration)