Loading repository data…
Loading repository data…
Shuvam77 / repository
StudyBuddy discussion room project is a Python based application developed in Django Framework. This project has features to create multiple discussion rooms and other users can follow discussion rooms and comment their opinions
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
StudyBuddy discussion room project is a Python based application developed in Django Framework. This project has features to create multiple discussion rooms and other users can follow discussion rooms and comment their opinions.
Different python packages were used to develop this project such as crispy-form, celery, redis, pillow, and so on, which are all mentioned in requirements.txt file.
GIT clone from GitHub
$ mkdir student_blog
$ cd student_blog
student_blog $ git clone https://github.com/Shuvam77/student-microblog.git .
Docker
Build Images and Run Docker Containers
student_blog $ docker build .
student_blog $ docker-compose up
Propogate your models into database schema
student_blog $ docker-compose exec web python manage.py makemigrations
student_blog $ docker-compose exec web python manage.py showmigrations
student_blog $ docker-compose exec web python manage.py migrate
For super access in application
student_blog $ docker-compose exec web python manage.py createsuperuser
Username: admin
Email address: admin@email.com
Password: sudo@123
URL: http://YOUR_LOCALHOST_URL/admin/
student_blog $ docker-compose up
or
student_blog $ docker-compose up -d (run in background)
student_blog $ docker-compose down
student_blog $ docker-compose up --build