This project is a FullStack Django based Social Network Website similar to Facebook • Newsfeed, Chat system, Friend Request send and receive, Likes, Comments and so on.
Technologies: Django, HTMX, Python, Bootstrap, CSS, JS, WebSocket, Django-Channel
Live Website: https://bloome.pythonanywhere.com/
Mail: demo@gmail.com
Password: demo1234
Note: You can add both MySQL or SQLite database. The configuration is added in the settings.py so you just have to uncomment the code and set database host, user, password and port.
Warning: If you face any database related error then you have to add the information by using python-dot-env or directly in the code of MySQL setup.
Clone the repository & Navigate to the project directory:
git clone https://github.com/emhash/Bloome
cd Bloome
Create a virtual envoirnment:
python -m venv myenv
Active virtual envoirnment with Bash terminal:
source myenv/Scripts/activate
(You can activate the virtual envoirnment using any terminal. Based on the terminal the activation process of virtual envoirnment might be different)
Now install the necessary module & start the server:
pip install -r requirements.txt
python manage.py runserver
** In case of migration problem migrate and then run the server **
python manage.py makemigrations
python manage.py migrate
Front-End: Html, CSS, Bootstrap, JavaScript
Back-End: Django, Sqlite or MySQL, Python, JS, HTMX