Skip to content

DeepakRanaMagar/ecommerce-django

Repository files navigation

E-commerce Server

This is a backend server built with Django for an E-commerce application. Developers are encouraged to build the frontend based on this server.

Setup Guide

To get started with the project, follow these steps:

  1. Clone the repository to your local machine:

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

    cd ecommerce-django
  3. Create a virtual environment and activate it:

    python3 -m venv venv
    source venv/bin/activate
  4. Install the project dependencies:

    pip install -r requirements.txt
  5. Run database migrations:

    python manage.py migrate
  6. Start the development server:

    python manage.py runserver
  7. The server should now be running at http://localhost:8000. You can access the API endpoints and test them using tools like Postman.

Contributing

If you would like to contribute to this project, please follow these guidelines:

  • Fork the repository and create a new branch for your feature or bug fix.
  • Make your changes and ensure that the code passes all tests.
  • Submit a pull request describing your changes.

License

This project is licensed under the MIT License. See the LICENSE file for more information.

Contact

If you have any questions or suggestions, feel free to reach out to us at dev.dpkrana@gmail.com.

Happy coding!