Skip to content

Latest commit

 

History

History
73 lines (53 loc) · 1.42 KB

README.md

File metadata and controls

73 lines (53 loc) · 1.42 KB

MovieScreen

A basic Django website for first-time learners.

Documentation

For detailed documentation, visit: Django Documentation

Prerequisites

  • Install Python. To see which version is compatible, visit: Django FAQ

Setting Up a Virtual Environment

On Linux

  1. Create a virtual environment:

    python3 -m venv myvenv
  2. Activate the virtual environment:

    source myvenv/bin/activate
  3. Install the required packages:

    pip install -r requirements.txt
  4. Deactivate the virtual environment when done:

    deactivate

On Windows

  1. Create a virtual environment:

    python -m venv myvenv
  2. Activate the virtual environment:

    myvenv\Scripts\activate
  3. Install the required packages:

    pip install -r requirements.txt
  4. Deactivate the virtual environment when done:

    deactivate

Installing Django

Before coding, you need to install Django in your virtual environment:

pip install django

Contributing

While raing the pull request, add ypur name to the CONTRIBUTORS.md file

Updating requirements.txt

While adding packages, update requirements.

pip freeze > requirements.txt