This is the open source project of Google Drive/OneDrive/iCloud/Dropbox alternative using Telegram API for the free unlimited cloud storage.
- Google Photos ends the free storage service
- We deserve the free cloud storage service! Pricing: Google Drive, OneDrive, Dropbox, iCloud
- node ^14
- psql ^13
- redis ^5
- yarn
-
Create a Telegram bot for forwarding messages from the contact form to your Telegram with BotFather
-
Install Redis
-
Install the PostgreSQL as a database and sync the schema
yarn server typeorm schema:sync
or, with dump.sql:
psql db_name < ./server/src/model/migrations/dump.sql
-
Setup environment variables
-
Server variables
env required description ENV no Hide the logs for production, default: develop RPS no Rate limit API per second, default: 20 TG_API_ID yes Application ID from your Telegram App TG_API_HASH yes Application hash from Telegram App TG_BOT_TOKEN yes Telegram bot token TG_BOT_OWNER_ID yes Chat ID for sending messages to you TG_BOT_ERROR_REPORT_ID no Chat ID for sending error, default: TG_BOT_OWNER_ID DB_HOST no Database host URI, default: localhost DB_NAME yes Database name DB_PORT no Database port, default: 5432 DB_USERNAME yes Database username DB_PASSWORD yes Database password GITHUB_TOKEN yes GitHub token for getting contributors API_JWT_SECRET yes Random string for hashing auth token FILES_JWT_SECRET yes Random string for encrypt public files PAYPAL_CLIENT_ID yes Client ID for PayPal subscription PAYPAL_CLIENT_SECRET yes Client secret for PayPal subscription PAYPAL_PLAN_PREMIUM_ID yes Product ID for premium plan REDIS_URI no Cache some responses from external services UTILS_API_KEY yes Token key for make all servers communicate DISABLE_PAYMENT_CHECK no Disable subscription check to PayPal, default: false -
Web variables
env required description REACT_APP_API_URL no Base URL for the API, default: ''
(empty string)
-
-
Define environment variables in
./docker/.env
-
Run
docker-compose -f docker/docker-compose.yml up -d
-
Open
teledrive.localhost
in browser
-
Define environment variables in
./server/.env
and./web/.env
-
Create .npmrc in
~/.npmrc
and add your GitHub personal token# Copy these lines //npm.pkg.github.com/:_authToken=yourtoken @mgilangjanuar:registry=https://npm.pkg.github.com/
-
Install dependencies
yarn install
-
Build all
yarn workspaces run build
-
Run
# All services will served in server with Express yarn server node .
-
Open
localhost:4000
(default port: 4000)
Or, if you want to run in the local environment:
-
Build server
yarn server build -w
-
Run server
yarn server start
-
Run web
# Define the REACT_APP_API_URL in web/.env first, then yarn web start # Or, directly define the env REACT_APP_API_URL=http://localhost:4000 yarn web start
- Fork and clone this repository
- Commit your changes
- Create a pull request to the
staging
branch
Or, just send us an issue for reporting bugs and/or ask the questions, share your ideas, etc in discussions.
We using the monorepo structure with yarn workspaces.
.
├── README.md
├── package.json
├── server
│ ├── package.json
│ ├── src
│ │ └── index.ts
│ └── tsconfig.json
├── web
│ ├── package.json
│ ├── public
│ ├── src
│ │ ├── pages
│ │ └── App.tsx
│ ├── tsconfig.json
│ └── yarn.lock
└── yarn.lock