All Projects → digitalfondue → Lavagna

digitalfondue / Lavagna

Licence: gpl-3.0
Lavagna: issue tracker/project management tool

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Lavagna

rebacklogs
Re:Backlogs is an Open Source Project Management Tool.
Stars: ✭ 163 (-69.07%)
Mutual labels:  issue-tracker, project-management, kanban
Support
Agile project management integrated with GitHub
Stars: ✭ 373 (-29.22%)
Mutual labels:  project-management, kanban, issue-tracker
Actionview
An issue tracking tool based on laravel+reactjs for small and medium-sized enterprises, open-source and free, similar to Jira.
Stars: ✭ 1,357 (+157.5%)
Mutual labels:  project-management, kanban, issue-tracker
Openproject
OpenProject is the leading open source project management software.
Stars: ✭ 5,337 (+912.71%)
Mutual labels:  project-management, kanban, issue-tracker
Wp Project Manager
The Project Management plugin for WordPress
Stars: ✭ 186 (-64.71%)
Mutual labels:  project-management, kanban
Kreta
Modern project management solution
Stars: ✭ 177 (-66.41%)
Mutual labels:  project-management, issue-tracker
iguana
Iguana is an open source issue management system with a kanban board.
Stars: ✭ 39 (-92.6%)
Mutual labels:  issue-tracker, project-management
bzkanban
🔪 Kanban board for Bugzilla 5+
Stars: ✭ 39 (-92.6%)
Mutual labels:  project-management, kanban
Orchardcollaboration
Orchard Collaboration is a free, open source ticketing system, project management and collaboration framework build on top of the Orchard CMS. It natively integrates with Orchard CMS and extends its features by allowing its users to collaboratively work on the content or by simplifying communication with the customers.
Stars: ✭ 37 (-92.98%)
Mutual labels:  issue-tracker, project-management
Gh Board
"Serverless" Kanban for GitHub Issues using gh-pages
Stars: ✭ 420 (-20.3%)
Mutual labels:  project-management, kanban
kanboard
Kanban project management software
Stars: ✭ 6,484 (+1130.36%)
Mutual labels:  project-management, kanban
Bitnami Docker Redmine
Bitnami Docker Image for Redmine
Stars: ✭ 172 (-67.36%)
Mutual labels:  project-management, issue-tracker
Traq
Project management and issue tracking system written in PHP.
Stars: ✭ 147 (-72.11%)
Mutual labels:  project-management, issue-tracker
agileseason-v1
Kanban board for GitHub issues
Stars: ✭ 12 (-97.72%)
Mutual labels:  project-management, kanban
Yona
Project Hosting SW, DEMO:
Stars: ✭ 418 (-20.68%)
Mutual labels:  project-management, issue-tracker
Mycollab
An open source, free, high performance, stable and secure Java Application Business Platform of Project Management and Document
Stars: ✭ 1,063 (+101.71%)
Mutual labels:  project-management, kanban
Masterlab
简单高效、基于敏捷开发的项目管理工具
Stars: ✭ 846 (+60.53%)
Mutual labels:  project-management, kanban
React Trello Multiboard
React-Trello-Multiboard is a single-page application built with React displaying multiple cards of several Trello® boards and lists. The cards can be filtered by preferred team members.
Stars: ✭ 43 (-91.84%)
Mutual labels:  project-management, kanban
latelier
L'atelier, a project management tool
Stars: ✭ 74 (-85.96%)
Mutual labels:  project-management, kanban
matorral
An open-source, very simple & extensible project managent tool written using Django/Python
Stars: ✭ 21 (-96.02%)
Mutual labels:  project-management, kanban

Lavagna

Java CI with Maven Maven Central Github All Releases Docker Status Docker Layers

Latest stable release is 1.1.7 (2020-11-17)

About

Lavagna is a small and easy to use issue/project tracking software.

It requires Java 8 or better and optionally a database: MySQL, MariaDB or PostgreSQL. It can be deployed in a Java servlet container or as a self contained war.

See:

Install

Lavagna supports MySQL (at least 5.1), MariaDB (tested on 10.1), PostgreSQL (tested on 9.1) and HSQLDB (for small deploy).

It's distributed in 2 forms:

  • simple war for deploying in your preferred web container
  • self contained war with embedded jetty web server

See the documentation at http://help.lavagna.io

For testing purposes

If you want to test it locally, you can download the self contained war and run:

wget https://repo1.maven.org/maven2/io/lavagna/lavagna/1.1.7/lavagna-1.1.7-distribution.zip
unzip lavagna-1.1.7-distribution.zip
./lavagna-1.1.7/bin/lavagna.sh

Go to http://localhost:8080 and login with "user" (password "user").

See the README in the archive and the documentation at http://help.lavagna.io if you want to customize the scripts and set lavagna in production mode.

Docker

Lavagna is also available as a Docker image so you can try it on the fly:

https://registry.hub.docker.com/u/digitalfondue/lavagna/

Develop

Java and Kotlin

Lavagna runs on a Java 8 jvm. Some parts of Lavagna are made with Kotlin.

IDE Configuration

Use UTF-8 encoding and 120 characters as line width. You will need a Java and Kotlin aware IDE. (Currently tested with intellij and eclipse).

For eclipse: you will need to install the kotlin plugin and add the "Kotlin nature" to the project: Right click on the project -> "Configure Kotlin" -> "Add Kotlin nature"

Javascript

Install npm and run the following script to assure your code follows our guidelines

First ensure that all the dependencies are ok with npm install.

Then, for checking:

npm run-script lint

Fix any error or warning before opening a pull request

Execute

Launch the Web Server:

mvn jetty:run

For launching Web Server + DB manager (HSQLDB only):

mvn jetty:run -DstartDBManager

for launching Web Server with the MySQL database (use the mysql profile):

mvn jetty:run -Pdev-mysql
mvn jetty:run -Pdev-pgsql

For debugging:

mvnDebug jetty:run

For running the test cases:

mvn test

For running the test cases with MySQL or PostgreSQL:

mvn test -Ddatasource.dialect=MYSQL
mvn test -Ddatasource.dialect=PGSQL

For running with jetty-runner:

mvn clean install
java -Ddatasource.dialect=HSQLDB -Ddatasource.url=jdbc:hsqldb:mem:lavagna -Ddatasource.username=sa -Ddatasource.password= -Dspring.profiles.active=dev -jar target/dependency/jetty-runner.jar --port 8080 target/*.war

When adding new file, remember to add the license header with:

mvn com.mycila:license-maven-plugin:format

Angular perfs

Use the following stats for keeping an eye on the performances:

Documentation

The documentation is written using stampo (see https://github.com/digitalfondue/stampo). It currently reside in src/main/stampo .

For building the doc:

mvn clean stampo:build

The output will be present in target/generated-docs

For testing the documentation run

mvn stampo:serve

And go to http://localhost:45001/

Vagrant

In order to make it easier to tests on different databases we included 3 Vagrant VMs. Make sure that you have installed Vagrant and VirtualBox before continuing.

Initialization

Fetch the submodules:

git submodule update --init

If you are under windows you need to ensure that the pgsql submodule is not in a broken state, double check that the file puppet\modules\postgresql\files\validate_postgresql_connection.sh is using the unix end of line (run dos2unix).

To run the tests with Vagrant boot the VMs with:

vagrant up [optionally use pgsql / mysql to boot only one VM]

Once that the VM is up and running run the tests:

mvn test -Ddatasource.dialect=PGSQL / MYSQL

Connecting manually:

PGSQL: localhost:5432/lavagna as postgres / password

MySQL: localhost:3306/lavagna as root

Notes about databases

The application uses UTF-8 at every stage and on MySQL you will need to create a database with the collation set to utf8_bin:

CREATE DATABASE lavagna CHARACTER SET utf8 COLLATE utf8_bin;

Code Coverage

Jacoco plugin is used.

mvn clean test jacoco:report

-> open target/site/jacoco/index.html with your browser

About Database migration

Can be disabled using the following system property: datasource.disable.migration=true

Check for updated dependencies

mvn versions:display-dependency-updates
mvn versions:display-plugin-updates

Supported by

Alt text

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].