This app allows you the see current deployed war/jar files in some servers, by using their (Jboss and Wildfly) APIs we can get so many information about the packages.
- Remove deployments
- Multiple environment
- Restart jboss/wildfly feature
- Upload package feature
- Lookup log
- Library installer
- Python 3
- Bash Access
Run below command in sequence
- Setup environment
nano config.json
- Cloning this repository
- Creating environment
python3 -m venv venv
or bypy -3 -m venv venv
- Activate the environment
. venv/bin/activate
or by. venv/scripts/activate
- Installing the flask framework
pip install Flask
- Setting flask app main file
export FLASK_APP=main.py
- Running the program
flask run
If you want to make it accessible from outside network you can useflask run --host=0.0.0.0