8000 GitHub - manishdait/latte: A free and open-source personal ticket management application designed to streamline internal staff and ticket management
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

A free and open-source personal ticket management application designed to streamline internal staff and ticket management

License

Notifications You must be signed in to change notification settings

manishdait/latte

Repository files navigation

Latte - Ticket Management Application

Latte - Ticket Management Application

A free and open-source personal ticket management application designed to streamline internal staff and ticket management.

Java CI with Maven LICENSE README.md

✨ Features

Latte offers a robust set of features to simplify your internal ticket management:

  • User Management: Effortlessly create and delete user accounts.
  • Ticket Management: Full control over tickets, including creation, editing, and deletion.
  • Role Management: Role creation based on different authoriitesDefine custom roles with varying levels of authority.
  • Ticket Comments: Adding comments to tickets.Facilitate communication by adding comments to tickets.
  • Simple to Use: Designed to be easy and simple to use.Designed for ease of use, ensuring a smooth experience for all users.

🐳 Installation

Getting Latte up and running with Docker. Simply use the provided docker-compose.yml configuration:

services:
  postgres-db:
    container_name: postgres-db
    image: postgres:alpine
    restart: always
    ports:
      - 5432:5432
    volumes:
      - pg_data:/var/lib/postgresql/data
    environment:
      - POSTGRES_USER=postgres
      - POSTGRES_PASSWORD=password
      - POSTGRES_DB=latte_db
    networks:
      - latte-network
  latte-api:
    container_name: latte-api
    image: manishdait/latte-api
    restart: always
    depends_on:
      - postgres-db
    networks:
      - latte-network
    volumes:
      - data:/app/data
  latte-client:
    container_name: latte-client
    image: manishdait/latte-client
    restart: always
    depends_on:
      - latte-api
    environment:
      - CLIENT_URL=http://latte-client:80
    ports:
      - 80:80
    networks:
      - latte-network

volumes:
  pg_data: {}
  data: {}

networks:
  latte-network:

Once your containers are running, you can access Latte in your web browser at http://localhost.

Default Credentials

For your initial login, use the following:

  • Default username: admin@admin.com

To retrieve the default password, open your terminal and run this command:

  docker exec latte-api cat data/.cred

🚀 Live Demo

You can explore a live instance of Latte in action before installing

Live Demo

Demo Credentials:

  • Username: admin@admin.com
  • Password: password

About

A free and open-source personal ticket management application designed to streamline internal staff and ticket management

Topics

Resources

License

Stars

Watchers

Forks

Contributors 2

  •  
  •  
0