Social network built with Django and Vue.js
---- LIVE NOW ----- http://twiker.herokuapp.com/login --- OPEN SOURCE ----- We will be pleased if you contribute
Work in progress.
✅ Likes and Dislikes
✅ Feed
✅ DM
✅ Profile
✅ Global Chat
✅ Real Time Chat
✅ Real Time Notifications
- clone the repository
git clone https://github.com/vapdev/Twikker.git
- cd into directory
cd Twikker
HOW TO RUN BACKEND
- run
docker-compose up --build
(if its not the first time you dont need to build it) - enter the container bash
docker exec -it twikker-web-1 bash
- run db migrations
python manage.py migrate
HOW TO RUN FRONTEND
cd /frontend
- install the dependencies
npm install
- run with
npm run dev