Coder Social home page Coder Social logo

nechodom / walauncher Goto Github PK

View Code? Open in Web Editor NEW

This project forked from filiprojek/walauncher

0.0 0.0 0.0 424 KB

A lightweight launcher for your web apps, an alternative to Muximux

License: GNU General Public License v3.0

JavaScript 55.03% CSS 33.09% HTML 10.76% Dockerfile 1.12%

walauncher's Introduction

WALauncher

WALauncher is a web-based launcher designed as an alternative to Muximux, primarily used for managing various web services like Servarr apps. However, it can be configured to launch and manage any web application.

Screenshots

Home page Home page view

Apps overview In app view

Usage

Using Docker

  1. Create docker-compose.yaml

    Create a docker-compose.yaml file in your project directory:

    services:
      walauncher:
        image: filiprojek/walauncher:latest
        container_name: walauncher
        ports:
          - 5200:80
        volumes:
          - ./walauncher/config.json:/var/www/html/config.json
          - ./walauncher/img/:/var/www/html/img/
        restart: unless-stopped
  2. Start and Stop the Compose

    Start the containers:

    docker-compose up -d

    Stop the containers:

    docker-compose down
  3. Configuration

    • cd to a newly created walauncher folder

    • Remove the config.json folder if it exists.

    • Create a config.json file in the project root with the following structure:

      {
          "apps": [
              {
                  "name": "Some service",
                  "img": "image_name.jpg",
                  "url": "http://localhost:8000/"
              },
              {
                  "name": "Some service",
                  "img": "image_name.jpg",
                  "url": "http://localhost:8100/"
              }
          ]
      }

    Replace "Some service", "image_name.jpg", and "http://localhost:8000/" with your own service names, image filenames in the img/ folder, and their respective URLs.

  4. Upload Icons and Images

    Upload your service icons (.svg, .jpg, etc.) to the walauncher/img/ folder.

Manual Setup (Without Docker)

  1. Setup Web Server

    Download the repository and serve it using a web server of your choice (e.g., Apache, Nginx).

  2. Configuration

    • Create a config.json file in the project root with the following structure:

      {
          "apps": [
              {
                  "name": "Some service",
                  "img": "image_name.jpg",
                  "url": "http://localhost:8000/"
              },
              {
                  "name": "Some service",
                  "img": "image_name.jpg",
                  "url": "http://localhost:8100/"
              }
          ]
      }

    Replace "Some service", "image_name.jpg", and "http://localhost:8000/" with your own service names, image filenames in the img/ folder, and their respective URLs.

  3. Upload Icons and Images

    Upload your service icons (.svg, .jpg, etc.) to the img/ folder in the project root.

  4. Start the Web Server

    Once configured, start your web server to serve walauncher.

Configuration

WALauncher supports additional optional configuration options to enhance customization. These options allow you to modify the behavior and appearance of the web application by adding an options object in the config.json file

Example config.json with Options

{
    "apps": [
        {
            "name": "Some service",
            "img": "image_name.jpg",
            "url": "http://localhost:8000/"
        },
        {
            "name": "Some service",
            "img": "image_name.jpg",
            "url": "http://localhost:8100/"
        }
    ],
    "options": {
        "footer": true,
        "footertext": "Your customized footer where you can use <strong>HTML</strong>",
        "title": "My Home Launcher"
    }
}

Options

  • footer (boolean, default: true): Control the visibility of the footer.

    • Set footer to false to hide the footer completely from the site.
  • footertext (string, optional): Customize the content of the footer.

    • Use this option to provide custom text for the footer. You can use HTML for formatting.
  • title (string, optional): Customize the document title.

    • Change title to another value to customize the title displayed in the browser's title bar.

These options are entirely optional. If not specified, the default behavior will be applied.

Contributing

Contributions are welcome! Fork the repository and submit a pull request with your changes.

Bug Reporting

If you encounter any bugs or issues, please report them here.

License

This project is licensed under the GNU General Public License v3.0 (GPL-3.0).

Docker Image

An official Docker image for walauncher is available on Docker Hub: filiprojek/walauncher

walauncher's People

Contributors

filiprojek avatar nechodom 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.