{"id":25189690,"url":"https://github.com/auriorajaa/django_react_ecommerce_backend","last_synced_at":"2026-04-30T10:31:51.108Z","repository":{"id":276507112,"uuid":"924772998","full_name":"auriorajaa/django_react_ecommerce_backend","owner":"auriorajaa","description":"Django Rest Framework backend for Upfront - a multi-vendor e-commerce platform with Stripe/PayPal integration and comprehensive API endpoints.","archived":false,"fork":false,"pushed_at":"2025-02-08T17:00:30.000Z","size":5556,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-08T18:19:11.853Z","etag":null,"topics":["auriorajaa","backend","backend-api","django","django-framework","django-rest-framework","djangorestframework","drf","multivendor-ecommerce"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/auriorajaa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-30T16:20:09.000Z","updated_at":"2025-02-08T17:01:59.000Z","dependencies_parsed_at":"2025-02-08T18:19:13.628Z","dependency_job_id":"01514924-de8d-4aae-a49a-cd9321170913","html_url":"https://github.com/auriorajaa/django_react_ecommerce_backend","commit_stats":null,"previous_names":["auriorajaa/django_react_ecommerce_backend"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/auriorajaa%2Fdjango_react_ecommerce_backend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/auriorajaa%2Fdjango_react_ecommerce_backend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/auriorajaa%2Fdjango_react_ecommerce_backend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/auriorajaa%2Fdjango_react_ecommerce_backend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/auriorajaa","download_url":"https://codeload.github.com/auriorajaa/django_react_ecommerce_backend/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247166996,"owners_count":20894834,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["auriorajaa","backend","backend-api","django","django-framework","django-rest-framework","djangorestframework","drf","multivendor-ecommerce"],"created_at":"2025-02-09T21:16:42.730Z","updated_at":"2026-04-30T10:31:51.052Z","avatar_url":"https://github.com/auriorajaa.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Django React E-commerce Backend\n\nDjango React E-commerce Frontend can be access at https://github.com/auriorajaa/django_react_ecommerce_frontend\n\nThis is the backend repository for Upfront, a multi-vendor e-commerce platform built with Django Rest Framework. This backend provides RESTful APIs to support the e-commerce functionality including user authentication, product management, order processing, and payment integration.\n\n## Prerequisites\n\n- Python 3.8 or higher\n- pip (Python package manager)\n- PostgreSQL (recommended for production)\n\n## Installation\n\n1. Clone the repository\n```bash\ngit clone https://github.com/auriorajaa/django_react_ecommerce_backend.git\ncd django_react_ecommerce_backend\n```\n\n2. Create and activate a virtual environment\n```bash\npython -m venv venv\n# On Windows\nvenv\\Scripts\\activate\n# On macOS/Linux\nsource venv/bin/activate\n```\n\n3. Install dependencies\n```bash\npip install -r requirements.txt\n```\n\n4. Create `.env` file\nCreate a `.env` file in the root directory and add the following environment variables:\n```\nSTRIPE_PUBLIC_KEY=your_stripe_public_key\nSTRIPE_SECRET_KEY=your_stripe_secret_key\nPAYPAL_CLIENT_ID=your_paypal_client_id\nPAYPAL_SECRET_ID=your_paypal_secret_id\nMAILERSEND_API_KEY=your_mailersend_api_key\nMAILERSEND_SENDER_DOMAIN=your_sender_domain\nFROM_EMAIL=your_from_email\nEMAIL_BACKEND=anymail.backends.mailersend.EmailBackend\nDEFAULT_FROM_EMAIL=your_default_from_email\nSERVER_EMAIL=your_server_email\n```\n\n5. Run database migrations\n```bash\npython manage.py migrate\n```\n\n6. Create a superuser (admin)\n```bash\npython manage.py createsuperuser\n```\n\n7. Start the development server\n```bash\npython manage.py runserver\n```\n\nThe server will start at `http://localhost:8000`\n\n## API Documentation\n\nOnce the server is running, you can access the API documentation at:\n- Swagger UI: `http://localhost:8000/`\n\n## Payment Integration\n\nThis backend integrates with both Stripe and PayPal for payment processing. Make sure to:\n1. Set up accounts with Stripe and PayPal\n2. Obtain the necessary API keys\n3. Add them to your `.env` file\n\n## Email Configuration\n\nThe project uses MailerSend for email services. Ensure you:\n1. Have a MailerSend account\n2. Configure your sender domain\n3. Add the API key and domain to your `.env` file\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fauriorajaa%2Fdjango_react_ecommerce_backend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fauriorajaa%2Fdjango_react_ecommerce_backend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fauriorajaa%2Fdjango_react_ecommerce_backend/lists"}