Skip to content

kohkimakimoto/pingcrm-echo

Repository files navigation

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.

Download latest version

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:

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)