This project aims to help people with information about buses that travel between cities.
The idea of the application is to help people around the world who want to travel from one city to another using paid public transport. The idea came about because whenever I needed to travel to cities near the city where I live, I needed to ask my friends if there is any public transport available, what time it is and where it leaves from. This app should serve to help people who had the same difficulties I had.
The link to design in Figma
- API - Backend application in Django Rest Framework
- APP - App mobile in React Native
- Web - Webpage in ReactJS
Go to api folder
cd api
Create docker-compose.override.yml for configure database credenteials(optional)
version: '3.5'
services:
postgres:
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_USER=postgres
- POSTGRES_DB=tembus
Now create .env file and configure data base
cd src
cp .env.example .env
Start the containers
docker-compose up -d
and enjoy