Skip to content

Faizgeeky/Django-OpenAI-ContentGEN

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Django OpenAI - Content Genration Web APP

Prerequisites

Before you begin, ensure you have met the following requirements:

  • Python: [Add information about Python version]
  • Django: [Add information about Django version]

Installation

Follow these steps to set up and run the project:

  1. Clone the repository:

    git clone https://github.com/your-username/your-django-project.git
  2. Navigate to the project directory:

    cd your-django-project
  3. Create a virtual environment:

    python -m venv venv
  4. Activate the virtual environment:

    • On Windows:

      venv\Scripts\activate
    • On macOS/Linux:

      source venv/bin/activate
  5. Install project dependencies:

    pip install -r requirements.txt
  6. Apply database migrations:

    python manage.py migrate
  7. Create a superuser (for admin access):

    python manage.py createsuperuser
  8. Run the development server:

    python manage.py runserver

The development server will start, and you can access the application at http://127.0.0.1:8000/.

Usage

  • Visit the admin panel at http://127.0.0.1:8000/admin/ and log in with the superuser credentials created.
  • [Add any other relevant instructions for using your application.]

Contribution

To contribute to this project, follow these steps