Lavagna alternatives and similar software solutions
Based on the "Project Management" category.
Alternatively, view Lavagna alternatives based on common mentions on social networks and blogs.
-
Phabricator
Effective June 1, 2021: Phabricator is no longer actively maintained. -
gitbucket
A Git platform powered by Scala with easy installation, high extensibility & GitHub API compatibility -
OpenProject
OpenProject is the leading open source project management software. -
Gitolite
Hosting git repositories -- Gitolite allows you to setup git hosting on a central server, with very fine-grained access control and many (many!) more powerful features. -
Redmine
Mirror of redmine code source - Official Subversion repository is at https://svn.redmine.org/redmine - contact: @vividtone or maeda (at) farend (dot) jp -
Taiga
Agile project management platform. Built on top of Django and AngularJS -
goodwork
Self hosted project management and collaboration tool powered by TALL stack -
Bonobo Git Server
Bonobo Git Server for Windows is a web application you can install on your IIS and easily manage and connect to your git repositories. Go to homepage for release and more info. -
Leantime
Leantime is a lean project management system for non-project managers. Designed to help you manage your projects from ideation to delivery. -
UVDesk
UVdesk Opensource Community Helpdesk Project built for all to make a Full Ticketing Support System along with many more other features. -
ZenTao
Zentao is a lifecycle management for agile projects and open source! -
Tuleap
Tuleap is a Free & Open Source Suite to improve management of software developments and collaboration. With a single web-based solution, project managers, developers & quality managers can easily build, deploy software projects. -
Git WebUI
A standalone local web based user interface for git repositories -
Klaus
docker run klaus / pip install klaus — the first Git web viewer that Just Works™. -
The Bug Genie
The Bug Genie is a friendly project management and issue tracking tool -
Trac
Trac is an enhanced wiki and issue tracking system for software development projects (mirror) -
Phproject
A high performance full-featured project management system -
Titra
titra - modern open source project time tracking for freelancers and small teams -
Lazylead
Eliminate the annoying work within ticketing systems (Jira, GitHub, Trello). Allows automating (without admin access) daily actions like tickets fields verification, email notifications by JQL/GQL, meeting requests to your (or teammates) calendar. -
Kallithea
Source code management system that supports two leading version control systems, Mercurial and Git, with a web interface. -
ProjeQtOr
A complete, mature, multi-user project management system with extensive functionality for all phases of a project. -
sorcia
Sorcia is a minimalist web frontend for Git repositories with fine-grained user access controls, multiple themes to choose based on your taste and many more. -
Pagure
A lightweight, powerful, and flexible git-centric forge with features laying the foundation for federated and decentralized development. -
RhodeCode
RhodeCode is an open source platform for software development teams. It unifies and simplifies repository management for Git, Subversion, and Mercurial. -
SCM Manager
The easiest way to share and manage your Git, Mercurial and Subversion repositories over http.
Access the most powerful time series database as a service
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Lavagna or a related project?
Popular Comparisons
README
Lavagna
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
go to http://localhost:8080 if you have a 403 error, you must configure the application, go to http://localhost:8080/setup, select demo + insert user "user".
enter username: user password: user
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:
- https://github.com/kentcdodds/ng-stats has a bookmarklet
- https://github.com/mrdoob/stats.js/ has a bookrmarklet
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
*Note that all licence references and agreements mentioned in the Lavagna README section above
are relevant to that project's source code only.