Brief description or introduction of your project.
DeeTweet is a Django-based web application that allows users to post short messages (tweets) which can be viewed and interacted with by other users. It provides a simple and intuitive interface for sharing thoughts and updates.
Explore a live demo of DeeTweet.
- Live Demo: DeeTweet Demo
Get DeeTweet up and running on your local machine.
-
Python 3.6+
-
Django 3.0+
-
Clone the repository:
git clone https://github.com/dee-raj//deetweet.git -
Navigate into the project directory:
cd deetweet -
Create a virtual environment:
python -m venv env -
Activate the virtual environment:
- On Windows:
.venv\Scripts\activate- On macOS/Linux:
source env/bin/activate -
Install dependencies:
pip install -r requirements.txt -
Apply migrations (if applicable):
python manage.py migrate -
Create a superuser (admin account):
python manage.py createsuperuser
Start DeeTweet and begin posting tweets!
- Run the development server:
python manage.py runserver
- Access the application in a web browser at
http://localhost:8000/.
We welcome contributions to make DeeTweet better! To contribute:
- Fork the repository.
- Create your feature branch (
git checkout -b feature/YourFeature). - Commit your changes (
git commit -am 'Add some feature'). - Push to the branch (
git push origin feature/YourFeature). - Open a pull request.
- This project is licensed under the MIT License - see the LICENSE file for details.

