Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Emaryllis/A-Django-Project

Repository files navigation

A Django Project

This is a personal Django project built to learn Django

Wakatime badge(Time tracker)

Setup Instructions

  1. Clone the repository:

    git clone https://github.com/Emaryllis/A-Django-Project.git
    cd A-Django-Project-master
  2. Create a Virtual Environment:

    py -m venv venv
  3. Activate the Virtual Environment:

    • On Unix/Linux:
      source venv/bin/activate
    • On Windows:
      venv\Scripts\activate
      or
       ./activate
  4. Install Dependencies:

    pip install -r requirements.txt
  5. Apply Migrations & Run the Development Server:

    py manage.py migrate
    py manage.py runserver

    or

    ./start-server
  6. Access the Application: Open your web browser and go to http://localhost:8000/