All Projects → ro31337 → Libretaxi

ro31337 / Libretaxi

Licence: agpl-3.0
Open source Uber #deleteuber

Programming Languages

go
31211 projects - #10 most used programming language
TSQL
950 projects
shell
77523 projects

Projects that are alternatives of or similar to Libretaxi

dailycodingproblem
Solutions to Daily Coding Problem questions
Stars: ✭ 26 (-99.29%)
Mutual labels:  uber, lyft
simobility
simobility - light-weight mobility simulation framework. Best for quick prototyping
Stars: ✭ 29 (-99.21%)
Mutual labels:  transportation, ridesharing
Uber
iOS Ride-Sharing App written in Swift 4 Using Map Kit and Core Data
Stars: ✭ 30 (-99.19%)
Mutual labels:  uber, ridesharing
Telegram Action
GitHub Action that sends a Telegram message.
Stars: ✭ 318 (-91.38%)
Mutual labels:  telegram
Social Media Profiles Regexs
📇 Extract social media profiles and more with regular expressions
Stars: ✭ 324 (-91.21%)
Mutual labels:  telegram
Awesome Telegram Chats
Stars: ✭ 347 (-90.59%)
Mutual labels:  telegram
Nekox
The third-party Telegram android app.
Stars: ✭ 333 (-90.97%)
Mutual labels:  telegram
Telegram
Telegram Bot API Wrapper for Scala
Stars: ✭ 310 (-91.59%)
Mutual labels:  telegram
Webhook2telegram
🤖 A simple bot to translate JSON HTTP requests into Telegram push messages
Stars: ✭ 357 (-90.32%)
Mutual labels:  telegram
Tgram
typegram: open source publishing platform
Stars: ✭ 340 (-90.78%)
Mutual labels:  telegram
Vehicle In Motion
This is a basic implementation of location listener using Google Maps Api
Stars: ✭ 339 (-90.81%)
Mutual labels:  uber
Tqdm
A Fast, Extensible Progress Bar for Python and CLI
Stars: ✭ 20,632 (+459.59%)
Mutual labels:  telegram
Stplanr
Sustainable transport planning with R
Stars: ✭ 352 (-90.45%)
Mutual labels:  transportation
Langhost
👻 A LAN dropbox chatbot controllable via Telegram
Stars: ✭ 324 (-91.21%)
Mutual labels:  telegram
Bottender
⚡️ A framework for building conversational user interfaces.
Stars: ✭ 3,803 (+3.15%)
Mutual labels:  telegram
Falconmessenger
🌟🌟🌟🌟🌟 Falcon Messenger is a Fast and Beautiful cloud-based messaging app. With iOS and IPadOS Support. Available on the App Store.
Stars: ✭ 310 (-91.59%)
Mutual labels:  telegram
H3 Py
Python bindings for H3, a hierarchical hexagonal geospatial indexing system
Stars: ✭ 354 (-90.4%)
Mutual labels:  uber
Kotlin Telegram Bot
🤖 A wrapper for the Telegram Bot API written in Kotlin
Stars: ✭ 337 (-90.86%)
Mutual labels:  telegram
Tgbot
Modular telegram group management bot
Stars: ✭ 334 (-90.94%)
Mutual labels:  telegram
Td
Cross-platform library for building Telegram clients
Stars: ✭ 4,260 (+15.54%)
Mutual labels:  telegram

LibreTaxi v2, #deleteuber

Roses are red
violets are blue
workers are tired of getting exploited
and we're all coming for you

LibreTaxi is open-source Uber proof-of-concept that works though Telegram.

See it in action: https://t.me/libretaxi_bot

Public feed: https://t.me/libretaxi_all

It is closer to Craigslist rideshare rather than Uber, but it works, and works great! The app that is easy to use, supports multiple languages, fast and cool. There are tens of thousands users worldwide, and we're on the way to 1M users. So please spread the word!

Prerequisites

  1. Install Go
  2. Install Go dep
  3. Download the repo to ~/go/src/libretaxi
  4. Install Docker with docker-compose
  5. Run PostgreSQL and RabbitMQ with default credentials (see connection strings below)
docker-compose up -d

Setting up RabbitMQ (for development and production)

rabbitmq:3-management contains UI plugin for queue management. Plugin port is 8080 (15672 in container). Login guest/guest.

Login to RabbitUI here: http://localhost:8080

There is only one queue at the moment:

Note that there is one message producer, and one message consumer threads (goroutines) in application.

Port 5672 is RabbitMQ itself.

LibreTaxi settings

Init settings for ./libretaxi.yml:

telegram_token: YOUR_TOKEN
db_conn_str: postgres://libretaxi:libretaxi@localhost:15432/libretaxi
rabbit_url: amqp://127.0.0.1:8079/
admin_channel_chat_id: -1001324105405
public_channel_chat_id: -1001470847849

Admin channel is the place where you shadow ban spamers. See https://stackoverflow.com/a/41779623/337085 for how to get id for you private channel. You'll need to invite @get_id_bot and type /my_id@get_id_bot. You'll see chat id.

Running

When all services are running, run libretaxi:

dep ensure # or ~/go/bin/dep ensure
go build
./libretaxi
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].