Project

latestver

0.01
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
Latestver command-line interface. Hosted or privately deployed. Project sync coming soon.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.13
~> 5.0
~> 0.10.0
~> 10.0

Runtime

 Project Readme

Latestver

Dependency monitoring web-application featuring webhooks, JSON API, and project-level tracking.

Hosted edition available at: lv.binarybabel.org

Join the chat at https://gitter.im/binarybabel/Latestver Support

Docker Automated build Dependency Status Code Climate Inline docs GPL

Supports tracking the latest versions of your favorite software via:

  • Git repository tags
  • RubyGems
  • NPM Packages
  • Web-page scraping

Deploying Latestver Privately

Latestver is available as a Docker Image: hub.docker.com/r/binarybabel/latestver

By default the application will be available from http://localhost:3333

Running Directly

docker run -p 3333:3333 -v $(pwd):/app/data --name latestver binarybabel/latestver

Using docker-compose.yml

version: '2'
services:
  app:
    image: binarybabel/latestver
    volumes:
      - .:/app/data
    ports:
      - "3333:3333"

Customizing

Environment variables and defaults

Catalog Settings

  • REFRESH_ENABLED
    • default: true - catalog versions refreshed automatically (at startup and set interval)
  • REFRESH_INTERVAL
    • default: 1h - how often catalog is refreshed, ex: (7d, 1h, 15m, 60s)
  • CACHE_CONTROL_MAX_AGE
    • default: 0 - how many seconds browsers or proxies may cache catalog results
  • GA_TRACKING_ID
    • default: none - Enable Google Analytics, ex: UA-00000000-1

Security Settings

  • ADMIN_PASS
    • no default - if set admin pages are password protected
  • ADMIN_USER
    • default: admin

Custom Catalog Entries

You can create custom catalog models for advanced version checking.

Here are some code references:

Your model should be namespaced module Catalog and reside within your data volume in a lib/catalog/ subdirectory.

Contributing

  1. Fork this repo on github.com and clone it to your workstation
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push the branch (git push origin my-new-feature)
  5. Submit new Pull Request from GitHub

Author and License

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

Project Includes

Latestver utilizes the following open-source projects...

Other dependencies are enumerated in Dockerfile and Gemfile.