Skip to content

A simple Django-based blogging GraphQL API developed using the Strawberry framework. It focuses on providing basic functionalities for a blogging platform, including creating posts and adding comments.

Notifications You must be signed in to change notification settings

aniketwdubey/myblogproject

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MyBlogProject

MyBlogProject is a simple Django-based blogging GraphQL API developed using the Strawberry framework. It focuses on providing basic functionalities for a blogging platform, including creating posts and adding comments.

DJANGO + STRAWBERY (1)

Table of Contents

Project Structure

The project structure is as follows:

  • blog/: Contains the Django app for the blogging functionalities.
  • myblogproject/: Main project directory.
  • db.sqlite3: SQLite database file.
  • manage.py: Django's command-line utility for administrative tasks.

Features

  • Post Creation: Users can create new blog posts with titles, content, and author information.
  • Commenting: Users can add comments to existing blog posts.
  • GraphQL API: The API is implemented using the Strawberry framework, providing a GraphQL endpoint for interacting with the blog data.

Installation

  1. Clone the repository:

    git clone https://github.com/yourusername/myblogproject.git
  2. Navigate to the project directory:

    cd myblogproject
  3. Create a virtual environment:

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

    • On Windows:

      venv\Scripts\activate
    • On macOS and Linux:

      source venv/bin/activate
  5. Install dependencies:

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

    python manage.py makemigrations
    python manage.py migrate

Usage

  1. Run the development server:

    python manage.py runserver
  2. Access the GraphQL endpoint at http://localhost:8000/graphql/ to interact with the API.

Perform CRUD Operations using GraphQL API

https://aniketdubey.hashnode.dev/building-a-simple-blogging-graphql-api-with-django-and-strawberry

Contributing

Contributions are welcome! If you'd like to contribute to this project, please follow these steps:

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature/your-feature-name).
  3. Make your changes.
  4. Commit your changes (git commit -am 'Add some feature').
  5. Push to the branch (git push origin feature/your-feature-name).
  6. Create a new Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

About

A simple Django-based blogging GraphQL API developed using the Strawberry framework. It focuses on providing basic functionalities for a blogging platform, including creating posts and adding comments.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages