This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 950
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #318 from mgilangjanuar/staging
Release v2.1.2
- Loading branch information
Showing
9 changed files
with
90 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
{ | ||
"name": "TeleDrive", | ||
"description": "Free cloud storage via telegram", | ||
"keywords": [ | ||
"cloud", | ||
"drive", | ||
"telegram", | ||
"free", | ||
"storage", | ||
"unlimited" | ||
], | ||
"website": "https://teledriveapp.com", | ||
"repository": "https://github.com/mgilangjanuar/teledrive", | ||
|
||
"addons": [ | ||
"heroku-postgresql" | ||
], | ||
"env": { | ||
"ENV": { | ||
"description": "Hide the logs for production, default: develop. Read more at: https://teledriveapp.com/docs/Deployment/heroku", | ||
"required": false | ||
}, | ||
"API_JWT_SECRET": { | ||
"description": "Random string for encrypt JWT web token. Read more at: https://teledriveapp.com/docs/Deployment/heroku", | ||
"required": true | ||
}, | ||
"FILES_JWT_SECRET": { | ||
"description": "Random string for encrypt public files.", | ||
"required": true | ||
}, | ||
"REACT_APP_API_URL": { | ||
"description": "Base URL for the API, default: '' (empty string).", | ||
"required": false | ||
}, | ||
"REACT_APP_TG_API_HASH": { | ||
"description": "Application hash from Telegram App (for experimental features).", | ||
"required": true | ||
}, | ||
"REACT_APP_TG_API_ID": { | ||
"description": "Application ID from your Telegram App (for experimental features).", | ||
"required": true | ||
}, | ||
"TG_API_HASH": { | ||
"description": "Application hash from Telegram App.", | ||
"required": true | ||
}, | ||
"TG_API_ID": { | ||
"description": "Application ID from your Telegram App.", | ||
"required": true | ||
}, | ||
"ADMIN_USERNAME": { | ||
"description": "Username Telegram for admin account.", | ||
"required": true | ||
}, | ||
"USE_PSQL_HEROKU": { | ||
"description": "If we are using Heroku PSQL", | ||
"required": true, | ||
"value": "1" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
if [ ! -f docker/.env ] | ||
then | ||
echo "Generating .env file..." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
if [ ! -f server/.env ] | ||
then | ||
echo "Generating server/.env file..." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "teledrive", | ||
"version": "2.1.1", | ||
"version": "2.1.2", | ||
"repository": "[email protected]:mgilangjanuar/teledrive.git", | ||
"author": "M Gilang Januar <[email protected]>", | ||
"license": "MIT", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export const VERSION = '2.1.1' | ||
export const VERSION = '2.1.2' | ||
export const MAX_UPLOAD_SIZE = 2_000_000_000 | ||
export const CHUNK_SIZE = 512 * 1024 | ||
export const RETRY_COUNT = 50 |