p3ngu19z / freedom-network-bot

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

freedom-network-bot

Telegram bot for providing VPN based on OutlineVPN

Features

  • Self-hosted OutlineVPN
  • No logs
  • Complete anonymity

How to run

Quickstart: Pooling & SQLite

The fastest way to run the bot is to run it in pooling mode using SQLite database without all Celery workers for background jobs. This should be enough for quickstart:

git clone https://github.com/p3ngu19z/freedom-network-bot
cd freedom-network-bot

Create virtual environment (optional)

python3 -m venv dtb_venv
source dtb_venv/bin/activate

Install all requirements:

pip install -r requirements.txt

Create .env file in root directory and copy-paste this:

DJANGO_DEBUG=True
DATABASE_URL=sqlite:///db.sqlite3
TELEGRAM_TOKEN=<ENTER YOUR TELEGRAM TOKEN HERE>

Run migrations to setup SQLite database:

python manage.py migrate

Create superuser to get access to admin panel:

python manage.py createsuperuser

Run bot in pooling mode:

python run_pooling.py 

If you want to open Django admin panel which will be located on http://localhost:8000/tgadmin/:

python manage.py runserver

About

License:Apache License 2.0


Languages

Language:Python 99.0%Language:HTML 0.4%Language:Dockerfile 0.3%Language:Procfile 0.3%