Awesome
Ping CRM on Echo (Go)
A demo application to illustrate how Inertia.js works with inertia-echo.
This is a port of the original Ping CRM written in Laravel/PHP + Vue to Echo/Go + Vue.
Demo
You can see the demo site at:
https://pingcrm-echo.kohkimakimoto.dev/
Installation
You can download a precompiled binary at the Github releases page.
After extracting the archive file, you can run the binary with the following command.
pingcrm-echo -data-dir=<path to data storage directory you like>
You're ready to go! Open http://localhost:8080 in your browser, and login with:
- Username: johndoe@example.com
- Password: secret
Build by Yourself
Clone the repo locally:
git clone https://github.com/kohkimakimoto/pingcrm-echo.git
cd pingcrm-echo
Install dependencies:
make deps
Build the binary:
make build/dev
You can get the binary at: dev/build/outputs/dev/pingcrm-echo
.
Credits
- Original work by Jonathan Reinink (@reinink) and contributors
- Port to Echo by Kohki Makimoto (@kohkimakimoto)