Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kohkimakimoto/pingcrm-echo
A demo application to illustrate how Inertia.js works with inertia-echo.
https://github.com/kohkimakimoto/pingcrm-echo
inertiajs vue3
Last synced: 4 days ago
JSON representation
A demo application to illustrate how Inertia.js works with inertia-echo.
- Host: GitHub
- URL: https://github.com/kohkimakimoto/pingcrm-echo
- Owner: kohkimakimoto
- License: mit
- Created: 2022-02-02T09:36:55.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-04T07:37:29.000Z (over 2 years ago)
- Last Synced: 2024-10-11T12:20:22.220Z (28 days ago)
- Topics: inertiajs, vue3
- Language: Go
- Homepage: https://pingcrm-echo.kohkimakimoto.dev
- Size: 816 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-inertiajs - Ping CRM / Echo - Demonstration application made with Echo and Vue.js. (Resources / Examples)
README
# Ping CRM on Echo (Go)
A demo application to illustrate how [Inertia.js](https://inertiajs.com/) works with [inertia-echo](https://github.com/kohkimakimoto/inertia-echo).
![](screenshot.png)
This is a port of the original [Ping CRM](https://github.com/inertiajs/pingcrm) written in Laravel/PHP + Vue to [Echo](https://echo.labstack.com/)/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](https://github.com/kohkimakimoto/pingcrm-echo/releases/latest)
After extracting the archive file, you can run the binary with the following command.
```sh
pingcrm-echo -data-dir=
```You're ready to go! Open http://localhost:8080 in your browser, and login with:
- **Username:** [email protected]
- **Password:** secret## Build by Yourself
Clone the repo locally:
```sh
git clone https://github.com/kohkimakimoto/pingcrm-echo.git
cd pingcrm-echo
```Install dependencies:
```sh
make deps
```Build the binary:
```sh
make build/dev
```You can get the binary at: `dev/build/outputs/dev/pingcrm-echo`.
## Credits
- Original work by Jonathan Reinink ([@reinink](https://github.com/reinink)) and contributors
- Port to Echo by Kohki Makimoto ([@kohkimakimoto](https://github.com/kohkimakimoto))