Skip to content

abhijo89mi/Ecommerce-shop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

To recreate the project run these commands:
1. python bootstrap.py
2. ./bin/buildout
3. Create an empty database named shop.
4. You need to update settings.py with the following content:



DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql', 
        'NAME': 'shop',                      
        'USER': 'root',                     
        'PASSWORD': '',                  
        'HOST': '',                      
        'PORT': '',                      
    }
}



4. Import the database by running the command:
mysql -u root -p shop < db.sql

4. Run the server: ./bin/django runserver
5. Point your browser to 127.0.0.8000/admin and your done!

Note :
Admin username :admin
Password :admin


Good By ....

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published