Git Product home page Git Product logo

aptly-ui's Introduction

aptly-web-ui

Simple web UI for aptly with no backend that connect directly to aptly.

It provides access to the following functions :

  • Upload new packages and add to repos
  • Migrate packages from one repo to another
  • Show packages list
  • Show a package's available versions, description, etc...
  • Remove a package or copy to another repository.

It's under active development and any requests are welcomed.

Look and feel

web-ui home page

It should be mobile friendly but it's not the main concern right now so it must have some rough edges.

Installation

Decompress the dist archive in aptly root folder (default to ~/.aptly/public). It should look like this :

~/.aptly/public
  - dists
  - pool
  - ui

Older releases are available on github.

Latest commits on master branch should always be "usable". You can clone the repository and build it using nodejs (>=6.0.0):

git clone [email protected]:sdumetz/aptly-web-ui.git
npm install
./deploy.sh

then extract aptly-web-ui.tar.gz to ~/.aptly/public. All deploy.sh do is running npm run build and packaging the files.

Configuration using nginx

Nginx config to serve apt repo + interface :

server {
  listen   80;
  root /var/aptly/.aptly/public;
  index index.html index.htm;

  access_log /var/log/nginx/packages.access.log  log_access;
  error_log /var/log/nginx/packages.error.log error;

  server_name my-domain.net;
  autoindex off;
  location / {
    try_files $uri $uri/;

    allow 192.168.1.0/24;
    deny all;
  }
  location /ui/ {
    try_files $uri $uri/ /ui/index.html;
    autoindex off;
  }
  location /dist/ {
    autoindex on;
  }
  location /pool/ {
    autoindex on;
  }
  location /api/ {
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $remote_addr;
    proxy_set_header Host $host;
    proxy_pass http://127.0.0.1:8080;
  }

}

Activate it and navigate to your-domain.net/ui/.

Configuration using nodejs

You can use a nodejs service as a proxy between your frontend and aptly's API.

It's done setting some environment variables :

    export APTLY_WEB_UI_PROXY_API_URL=http://localhost:8080 #your aptly install
    export APTLY_WEB_UI_PORT=8081  #web ui port
    npm start

You can create a systemd service unit using Environment=APTLY_WEB_UI_PROXY_API_URL=http://localhost:8080.

The only facility provided by the proxy at the moment is http basic auth.

Security

This solution is compatible with external auth methods like oauth_proxy. There is currently no read-only interface to serve to unauthorized users.

Contribute

This is developped using React and React-router.

Currently very few routes are implemented. snapshot management would be nice but require some work to be done.

BUGS

  • Will always fetch packages list even if we go straight to a package's URL. (Maybe not a problem : Need to check load on aptly to generate large packages lists).

Original Author : Sebastien DUMETZ.

aptly-ui's People

Contributors

sdumetz avatar msabramo avatar csymulak avatar

Stargazers

Umut Dağ avatar

Watchers

Cem Topkaya avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.