Skip to content

rudrakshi99/StackoverFlow-Api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

StackoverFlow-Api

It is a stackoverflow api made by scraping the stackoverflow website using beautiful soup.

Technology Stack to be used:

View in Swagger Run in Postman

  • Backend: Django Rest Framework
  • IDE: VS Code
  • API Testing & Documentation: Swagger
  • Version Control: Git and GitHub
  • Database: PostgreSQL
  • Hosting - AWS EC2

Backend Setup Instructions

  • Fork and Clone the repo using
$ git clone https://github.com/rudrakshi99/StackoverFlow-Api.git
  • Setup Virtual environment
$ python3 -m venv env
  • Activate the virtual environment
$ source env/bin/activate
  • Install dependencies using
$ pip3 install -r requirements.txt
  • Make migrations using
$ python3 manage.py makemigrations
  • Migrate Database
$ python3 manage.py migrate
  • Create a superuser
$ python3 manage.py createsuperuser
  • Run server using
$ python3 manage.py runserver