Skip to content

Commit

Permalink
ADD - speedshare app, new REL, donations options to support development
Browse files Browse the repository at this point in the history
  • Loading branch information
MRColorR committed Feb 7, 2024
1 parent 1b0367c commit a56ebcb
Show file tree
Hide file tree
Showing 6 changed files with 58 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#
######################################################################
## PROJECT_VERSION
PROJECT_VERSION=3.2.7
PROJECT_VERSION=3.3.2
## PROJECT NAME
COMPOSE_PROJECT_NAME=money4band
DS_PROJECT_SERVER_URL=https://discord.com/invite/Fq8eeazBAD
Expand Down Expand Up @@ -70,13 +70,16 @@ PROXYRACK_DEVICE_UUID=yourPROXYRACKDeviceUUID
## PROXYLITE Your Proxylite USER ID (to retrieve in your proxylite dashboard : Section : download -> look for Your USER ID , it should be a number like 123456 near you account name)
PROXYLITE_USER_ID=yourPROXYLITEUserID

# BITPING
## BITPING
# Bitping had a special first startup process , for legacy see manual setup documentation or use te setup script
# Your Bitping account email
# Your Bitping account password
BITPING_EMAIL=yourBITPINGMail
BITPING_PASSWD=yourBITPINGPw

## SPEEDSHARE Your SpeedShare authentication code
SPEEDSHARE_CODE=yourSPEEDSHARECode

# MYSTNODE
# Mystnode have a special first startup process , see manual setup documentation or use te setup script
MYSTNODE_DASHBOARD_PORT=4449
Expand Down
10 changes: 10 additions & 0 deletions .resources/.www/.configs/app_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,17 @@
"--email":{},
"--password":{}
}
},
{
"name": "SPEEDSHARE",
"dashboard": "https://dashboard.speedshare.app/",
"link": "https://speedshare.app/?ref=mindlessnerd",
"image": "eldavo/speedshare",
"flags": {
"--code": {}
}
}

],
"extra-apps":[
{
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ Register an account on the app's sites clicking each apps' names in the followin
| Go to [PROXYRACK](https://peer.proxyrack.com/ref/myoas6qttvhuvkzh8ffx90ns1ouhwgilfgamo5ex) | :white_check_mark: | :white_check_mark: |500|1|
| Go to [PROXYLITE](https://proxylite.ru/?r=PJTKXWN3) | :white_check_mark: | :white_check_mark: |Unlimited|1|
| Go to [BITPING](https://app.bitping.com?r=qm7mIuX3) | :white_check_mark: | :white_check_mark: |Unlimited|1|
| Go to [SpeedShare](https://speedshare.app/?ref=mindlessnerd) | :white_check_mark: | :x: | Unlimited | 1 |
| Go to [MYSTNODE](https://mystnodes.co/?referral_code=Tc7RaS7Fm12K3Xun6mlU9q9hbnjojjl9aRBW8ZA9) | :white_check_mark: | :white_check_mark: |Unlimited|Unlimited|
## Scale Up with Multi-Proxy Support 🌐
Expand Down
12 changes: 12 additions & 0 deletions docker-compose.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,18 @@ services:
#ENABLE_BITPING mem_reservation: ${APP_MEM_RESERV_BIG}
#ENABLE_BITPING mem_limit: ${APP_MEM_LIMIT_BIG}

# SPEEDSHARE CONTAINER
#ENABLE_SPEEDSHARE speedshare:
#ENABLE_SPEEDSHARE container_name: speedshare_$DEVICE_NAME
#ENABLE_SPEEDSHARE image: eldavo/speedshare:latest
#ENABLE_SPEEDSHARE environment:
#ENABLE_SPEEDSHARE - CODE=$SPEEDSHARE_CODE
#ENABLE_SPEEDSHARE # network_mode: service:tun2socks
#ENABLE_SPEEDSHARE restart: always
#ENABLE_SPEEDSHARE cpus: ${APP_CPU_LIMIT_BIG}
#ENABLE_SPEEDSHARE mem_reservation: ${APP_MEM_RESERV_BIG}
#ENABLE_SPEEDSHARE mem_limit: ${APP_MEM_LIMIT_BIG}


### EXTRA APPS ###

Expand Down
14 changes: 14 additions & 0 deletions runme.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ function fn_unknown($REPLY) {
# Function to exit the script gracefully #
function fn_bye {
colorprint "Green" "Share this app with your friends thank you!"
colorprint "Cyan" "Support the project development check the donation options in the README, on GitHub, or in our Discord. Every bit helps! 💙"
print_and_log "Green" "Exiting the application...Bye!Bye!"
exit 0
}
Expand Down Expand Up @@ -1072,6 +1073,18 @@ function fn_setupApp() {
colorprint "Red" "CID cannot be empty. Please try again."
}
}
"--code" {
toLog_ifDebug -l "[DEBUG]" -m "Starting auth code setup for ${CURRENT_APP} app"
colorprint "Default" "Find your auth code inside your ${CURRENT_APP} dashboard/profile."
colorprint "Green" "Enter your ${CURRENT_APP} auth code:"
$APP_CODE = Read-Host
if ($APP_CODE) {
(Get-Content ${ENV_FILENAME}) -replace "your${CURRENT_APP}Code", $APP_CODE | Set-Content ${ENV_FILENAME}
}
else {
colorprint "Red" "Code cannot be empty. Please try again."
}
}
"--token" {
toLog_ifDebug -l "[DEBUG]" -m "Starting token setup for ${CURRENT_APP} app"
colorprint "DEFAULT" "Find your token inside your ${CURRENT_APP} dashboard/profile."
Expand Down Expand Up @@ -1760,6 +1773,7 @@ function mainmenu {
check_project_updates
adaptLimits
colorprint "GREEN" "---------------------------------------------- "
colorprint "CYAN" "Support the project development check the donation options in the README, on GitHub, or in our Discord. Every bit helps! 💙"
colorprint "MAGENTA" "Join our Discord community for updates, help, and discussions: $DS_PROJECT_SERVER_URL"
colorprint "MAGENTA" "---------------------------------------------- "
colorprint "DEFAULT" "Detected OS type: $($script:OS_TYPE)"
Expand Down
16 changes: 16 additions & 0 deletions runme.sh
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ fn_unknown() {
# Function to exit the script gracefully #
fn_bye(){
colorprint "GREEN" "Share this app with your friends thank you!"
colorprint "CYAN" "Support the project development check the donation options in the README, on GitHub, or in our Discord. Every bit helps! 💙"
print_and_log "GREEN" "Exiting the application...Bye!Bye!"
exit 0
}
Expand Down Expand Up @@ -1033,6 +1034,20 @@ fn_setupApp() {
fi
done
;;
--code)
toLog_ifDebug -l "[DEBUG]" -m "Starting auth code setup for ${CURRENT_APP} app"
colorprint "DEFAULT" "Find your auth code inside your ${CURRENT_APP} dashboard/profile."
while true; do
colorprint "GREEN" "Enter your ${CURRENT_APP} auth code:"
read -r APP_CODE
if [[ -z "$APP_CODE" ]]; then
colorprint "RED" "Code cannot be empty. Please try again."
else
sed -i "s/your${CURRENT_APP}Code/$APP_CODE/" ${ENV_FILENAME}
break
fi
done
;;
--token)
toLog_ifDebug -l "[DEBUG]" -m "Starting token setup for ${CURRENT_APP} app"
colorprint "DEFAULT" "Find your token inside your ${CURRENT_APP} dashboard/profile."
Expand Down Expand Up @@ -1587,6 +1602,7 @@ mainmenu() {
check_project_updates
fn_adaptLimits
colorprint "GREEN" "---------------------------------------------- "
colorprint "CYAN" "Support the project development check the donation options in the README, on GitHub, or in our Discord. Every bit helps! 💙"
colorprint "MAGENTA" "Join our Discord community for updates, help, and discussions: ${DS_PROJECT_SERVER_URL}"
colorprint "MAGENTA" "---------------------------------------------- "
colorprint "DEFAULT" "Detected OS type: ${OS_TYPE}"$'\n'"Detected architecture: $ARCH"$'\n'"Docker $DKARCH image architecture will be used if the app's image permits it"$'\n'"---------------------------------------------- "$'\n'
Expand Down

0 comments on commit a56ebcb

Please sign in to comment.