├── .gitignore ├── README.md ├── assets ├── Answer_accepted.png ├── Darkmode.png ├── Homepage.png ├── Lightmode.png ├── Profile.png ├── Question.png ├── Self_answer.png ├── askQuestion.png └── edit_profile.png ├── requirements.txt └── stackoverflow ├── main ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── __init__.cpython-38.pyc ├── admin.py ├── apps.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-38.pyc │ │ ├── 0002_auto_20201214_1613.cpython-38.pyc │ │ ├── 0002_auto_20201214_1621.cpython-38.pyc │ │ ├── __init__.cpython-36.pyc │ │ └── __init__.cpython-38.pyc ├── models.py ├── templates │ └── main │ │ ├── askquestion.html │ │ ├── base.html │ │ ├── profile.html │ │ ├── question-single.html │ │ └── questions.html ├── tests.py ├── urls.py ├── utils.py └── views.py ├── manage.py ├── media └── default_image.png ├── stackoverflow ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── __init__.cpython-38.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── static ├── css │ ├── editprofile.css │ ├── home.css │ └── main.css └── question │ ├── home.css │ └── main.css └── userauth ├── __init__.py ├── __pycache__ ├── __init__.cpython-36.pyc └── __init__.cpython-38.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations ├── __init__.py └── __pycache__ │ ├── 0001_initial.cpython-36.pyc │ ├── 0001_initial.cpython-38.pyc │ ├── 0002_auto_20201116_1153.cpython-36.pyc │ ├── 0002_auto_20201116_1153.cpython-38.pyc │ ├── 0002_auto_20201118_1548.cpython-36.pyc │ ├── 0002_auto_20201118_1548.cpython-38.pyc │ ├── 0003_auto_20201118_1948.cpython-36.pyc │ ├── 0003_auto_20201118_1948.cpython-38.pyc │ ├── 0004_auto_20201118_1808.cpython-36.pyc │ ├── 0004_auto_20201118_1808.cpython-38.pyc │ ├── 0005_auto_20201123_1931.cpython-38.pyc │ ├── __init__.cpython-36.pyc │ └── __init__.cpython-38.pyc ├── models.py ├── templates └── userauth │ ├── editprofile.html │ ├── login.html │ ├── logout.html │ ├── signup.html │ └── user_active_email.html ├── tests.py ├── tokens.py ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .dbsqlite3 3 | # media/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
3 |
4 | 5 |
17 | The aim of the project is to implement all the basic and necesssary functionalities of Stackoverflow.
18 |
19 | For developers, by developers
20 |
21 | Stack Overflow is an open community for anyone that codes. They help you get answers to your toughest coding questions, share knowledge with your coworkers in private, and find your next dream job.
22 |
29 |
30 |
37 |
38 |
40 |
41 |
48 |
49 |
51 |
52 |
59 |
60 |
67 |
68 |
70 |
71 |
79 |
The community is here to help you with specific coding, algorithm, or language problems. 72 | Avoid asking opinion-based questions.
73 |Asked {{q.created_at}} Active Viewed {{q.views}} times
18 | 19 |{{q.author.name}}
{{q.author.reputation_score}}
{{a.answered_by.name}}
{{a.answered_by.reputation_score}}