diff --git a/README.md b/README.md index c180471..ade2fba 100644 --- a/README.md +++ b/README.md @@ -5,41 +5,12 @@ Do you want to host your terminal,and can be accessible from web browser ## Requirements: -GIT - -Heroku cli A heroku account -A blank heroku app - +Some Braincells: Very Important ## Follow these steps: -Login with heroku - -``` -heroku login -i -``` -fill your heroku credentials - -Now if you don't have blank application available ,create one by -``` -heroku create {appname} -``` - - -``` -git clone https://github.com/kcubeterm/kali-web -cd kali-web -``` -now open heroku.yml and replace `username` and `password` with any credentials - -And execute install.sh - -```bash install.sh``` - -It ask for your heroku application name, fill it and hit enter, after some time, if you don't get any error. - -You can view your kali terminal in https://appname.herokuapp.com +[![Deploy To Heroku](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/Box-boi/web-terminal/) diff --git a/app.json b/app.json new file mode 100644 index 0000000..b7999a6 --- /dev/null +++ b/app.json @@ -0,0 +1,24 @@ +{ + "name": "Web Terminal", + "description": "Fully fledged Ubuntu Terminal, refer readme for more info.", + "repository": "https://github.com/Box-boi/web-terminal.git", + "keywords": ["docker","ubuntu", "linux", "remote", "ssh", "rclone", "auto-backup"], + "stack": "container", + "env": { + "USERNAME" : { + "description": "Your Username.", + "value" : "user", + "required" : true + }, + "PASSWORD": { + "description": "Your Password.", + "value" : "password", + "required" : true + }, + "APP_NAME" : { + "description": "Name of the app, same as mentioned above.", + "value" : "", + "required" : true + } + } + }