Bikrente is a Django-based e-commerce web application designed to support local businesses by providing a flexible, scalable, and user-friendly online shopping experience.
git clone https://github.com/SaugatEDITH/Bikrante.git
cd bikrentepython -m venv venv
venv\Scripts\activatepython3 -m venv venv
source venv/bin/activatepip install -r requirements.txtpython manage.py makemigrations
python manage.py migratepython manage.py createsuperuserEMAIL = "SomethingSomething.example.com"
PASSKEY="SomethingSomething"
CLOUDFLARE_SECRET_KEY = "SomethingSomethingSomething"- EMAIL and PASSKEY: For sending emails (e.g., registration, password reset).
- CLOUDFLARE_SECRET_KEY: For CAPTCHA verification using Cloudflare Turnstile.
Note: We have integrated Zipher AI using an iframe for multilingual chatbot-based search functionality.You do not need to set up a custom LLM API like DeepSeek unless you want to host your own model. If you plan to replace Zipher with your own LLM (e.g., DeepSeek), uncomment the related backend code and add:
DEEPSEEK_R1_SECRET="SomethingSomething"
python manage.py runserverVisit: http://localhost:8000/ the 127.0.0.1:8000 wont work properly because Trunstile havent configured for that.
Go to: http://localhost:8000/admin/
Login with your superuser credentials.
- ✅ Product listing, cart, checkout
- 🔒 Secure login/logout/signup
- 📦 Order & Inventory Management
- 🧾 PDF Invoice Generation
- 🔍 Advanced Search & Filters
- 🤖 Zipher AI Chatbot and Smart Search
- 🎯 Trending / Popular / Top-selling Products
- 🌐 Payment Integration: Esewa, Khalti, PayPal
- 📱 Mobile-responsive UI
- 🛒 Wishlist and Product Comparison
- 👤 User & Admin Dashboards
bikrente/
├── manage.py
├── bikrente/ ← Django settings and URLs
├── shopapp/ ← App: products, cart, orders, etc.
├── templates/
├── static/
├── media/
├── requirements.txt
└── README.md
- Python 3.8+ recommended
- SQLite used for development
- To collect static files for production:
python manage.py collectstatic
- Email: bikrente@saikripa.com.np
- GitHub Issues: Submit a Bug
🚀 Happy Coding!