Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 641 Bytes

Readme.md

File metadata and controls

41 lines (27 loc) · 641 Bytes

Poetry Django Project

This is a Django project powered by Poetry, a dependency management tool for Python.

Prerequisites

  • Python 3.x
  • Poetry

Installation

  1. Clone the repository:

    git clone <repository_url>
  2. Navigate to the project directory:

    cd <project_directory>
  3. Install project dependencies using Poetry:

    poetry install
  4. Apply database migrations:

    poetry run python manage.py migrate

Usage

To start the Django development server, run the following command: bash python manage.py runserver