Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/j0ack/pingcrm-flask
Ping CRM port to Flask and Vue3
https://github.com/j0ack/pingcrm-flask
Last synced: 3 months ago
JSON representation
Ping CRM port to Flask and Vue3
- Host: GitHub
- URL: https://github.com/j0ack/pingcrm-flask
- Owner: j0ack
- Created: 2021-12-19T15:42:23.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-15T14:04:18.000Z (over 2 years ago)
- Last Synced: 2024-04-10T04:07:12.291Z (7 months ago)
- Language: Vue
- Size: 351 KB
- Stars: 8
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-inertiajs - Ping CRM / Flask - Demonstration application made with Flask and Vue.js. (Resources / Examples)
README
# Ping CRM
A demo application to illustrate how Inertia.js works with [Flask](http://flask.pocoo.org/)
and [Vue 3](https://v3.vuejs.org/).![](https://raw.githubusercontent.com/inertiajs/pingcrm/master/screenshot.png)
> This is a port of the original [Ping CRM](https://github.com/inertiajs/pingcrm)
> written in Laravel and Vue.# Installation
Clone the repo locally:
```
git clone https://github.com/j0ack/pingcrm-flask.git
cd pingcrm-flask
```Install dependencies:
```
python3 -m venv venv
source ./venv/bin/activate
make init
```Run database seeder:
```
make seed
```Run dev server:
```
make dev
```