Skip to content

Latest commit

 

History

History
44 lines (39 loc) · 876 Bytes

README.md

File metadata and controls

44 lines (39 loc) · 876 Bytes

WeCommunicate

A django based project where anyone can publish your stories and read other important facts and posts.

Dependencies

  • python3
  • virtualenv
  • pip

Build and Run

1.Clone the repository

$ git clone https://github.com/muskan6769/WeCommunicate.git
$ cd WeCommunicate
  1. Make virtual environment on your system
$ sudo apt-get install python3-venv
$ python3 -m venv <env_name>
  1. Activate your environment
$ source <env_name>/bin/activate

The virtual environment can be deactivated with the deactivate command.

  1. Install requirements
$ pip install -r requirements.txt
  1. Migrate files
$ python manage.py migrate
$ python manage.py makemigrations my_app
  1. Run the app
$ python manage.py runserver
  1. View the locally built site
localhost:8000