An open API service indexing awesome lists of open source software.

https://github.com/adzo261/twitter-like-micro-blog

Twitter like tag based micro blog using Django, Jquery and Bootstrap.
https://github.com/adzo261/twitter-like-micro-blog

django micro-blog python3 twitter-clone

Last synced: 2 months ago
JSON representation

Twitter like tag based micro blog using Django, Jquery and Bootstrap.

Awesome Lists containing this project

README

          

# Twitter Like Micro Blog

> Twitter like micro blogging site based on Django, Jquery, Ajax and Twitter Bootstrap.

## Hosted on Heruko

https://twitter-like-micro-blog.herokuapp.com/

## Todo

- [x] Home page
- [x] Responsive Design
- [ ] Feature to follow users
- [x] Feature to like posts
- [x] SearchBar to search users and tags
- [x] Detect tags from post
- [x] Tag page
- [ ] User profile page
- [ ] Reset password
- [x] Trending Tags section

## Development setup

Fork it and clone as local repository.

```sh
$ cd twitter-like-micro-blog
$ virtualenv venv
$ . venv/bin/activate
$ pip install -r requirements.txt
$ python manage.py makemigrations
$ python manage.py migrate
$ python manage.py createsuperuser
$ python manage.py runserver
```