This is a e-commerce website made with Html,css,bootstrap,js and Django.This website is still under development and names of the directories can be confusing. I will fix them in near future.
- Start the virtual environment by using
source bin/activate
command. - Install all the requirements by entering
pip install -r requirements.txt
. - Now, Change the directory to Mspp2 by using
cd Mspp2
command. - Here, migrations has been already done but you have to change secret_token in myapp/settings.py
- You can generate this token running
python secret_key_generator.py
. - After all this you can start the server by using
python manage.py runserver
.
- Start the project and add about and home page.
- Add model for products as well as a product page.
- Add type of product in product table.
- Add filter of products in product page.
- Organising products in page numbers.
- Add payment page on website.
- Fix errors related to payment of cart items.
- Add search functionality.
- Add Login,Logout and Sign ups.
- Add a User Profile page.
- Add cart functionality
- Add model of recording customer data of orders to database and show it on orders page.
- Host this site on hosting service like aws or heroku.
myapp/ - This dir contains common project files like settings.py.
jojo/ -This folder is an app which contain views of login,logout, about and home of the website.
shop/ - This dir contains views of all shoppiing functions like checkout, product page, cart and storing customer data.
This website is made by me to test my Django and js skills