A Web application for writing online blogs. This project is focused on developing and portraying backend development skills rather than frontend.
The first thing to do is to clone the repository:
$ git clone https://github.com/Vipul115/Web-Blogging-Application.git
$ cd Web-Blogging-ApplicationCreate a virtual environment to install dependencies in and activate it:
$ virtualenv venvFor Windows:
$ venv\Scripts\activateFor Linux or Mac:
$ source venv/bin/activateThen install the dependencies after navigating to the project directory:
(venv)$ pip install -r requirements.txtNote the (venv) in front of the prompt. This indicates that this terminal
session operates in a virtual environment set up by virtualenv.
Once pip has finished downloading the dependencies:
(venv)$ cd <project directory>
(venv)$ python manage.py runserverAnd navigate to http://127.0.0.1:8000/.
- EMAIL_HOST_USER : User's email
- EMAIL_HOST_PASSWORD : User's Password
- AWS_SECRET_ACCESS_KEY : AWS User Secret Key
- AWS_ACCESS_KEY_ID : AWS User Key ID
- AWS_STORAGE_BUCKET_NAME : AWS S3 bucket name
Vipul Rustagi – LinkedIn – vipulrustagi11@gmail.com





