8000 GitHub - vietlinhh02/BookStation: Book Store website with django
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

vietlinhh02/BookStation

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿ“š BookStation

BookStation lร  mแป™t แปฉng dแปฅng web quแบฃn lรฝ sรกch ฤ‘ฦฐแปฃc xรขy dแปฑng bแบฑng Django ๐ŸŒ.

๐Ÿ”— Truy cแบญp แปฉng dแปฅng tแบกi ฤ‘รขy


๐Ÿ“ธ Giao diแป‡n


๐Ÿš€ Bแบฏt ฤ‘แบงu

1. ๐Ÿ“ฅ Clone dแปฑ รกn

git clone https://github.com/ZACZ1NH0/BookStation.git
cd BookStation

2. ๐Ÿ Tแบกo mรดi trฦฐแปng แบฃo vแป›i Python 3.11 (nแบฟu chฦฐa tแบกo)

โš ๏ธ ฤแบฃm bแบฃo bแบกn ฤ‘รฃ cร i Python 3.11 trฦฐแป›c ฤ‘รณ.

py -3.11 -m venv venv

Kรญch hoแบกt mรดi trฦฐแปng แบฃo:

  • Windows (PowerShell):
.\venv\Scripts\activate.ps1
  • Windows (CMD):
.\venv\Scripts\activate.bat

hoแบทc

.\venv\Scripts\activate
  • macOS/Linux:
source venv/bin/activate

3. ๐Ÿ“ฆ Cร i ฤ‘แบทt cรกc thฦฐ viแป‡n phแปฅ thuแป™c

pip install -r requirements.txt

4. โš™๏ธ Cแบฅu hรฌnh

##vแป›i mysql (recommend vแป›i mysql workbench)

tแบกo database bookstore_db

dรนng user root vแป›i mแบญt khแบฉu 1234

cแป•ng 3306

file settings

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': 'bookstore_db',
        'USER': 'root',                 # Username cแปงa MySQL
        'PASSWORD': '1234',     # Password cแปงa MySQL
        'HOST': 'localhost',            # Hoแบทc IP cแปงa DB server
        'PORT': '3306',                 # Cแป•ng mแบทc ฤ‘แป‹nh
        'OPTIONS': {
            'init_command': "SET sql_mode='STRICT_TRANS_TABLES'"
        },
    }
}

5. ๐Ÿงช Chแบกy แปฉng dแปฅng vแป›i django

python manage.py migrate
python manage.py runserver

๐Ÿ“„ Requirements

๏ปฟasgiref==3.8.1
Django==5.2.1
django-widget-tweaks==1.5.0
et_xmlfile==2.0.0
mysqlclient==2.2.7
numpy==1.26.4
openpyxl==3.1.5
pandas==2.1.3
pillow==11.2.1
python-dateutil==2.9.0.post0
pytz==2025.2
six==1.17.0
sqlparse==0.5.3
tzdata==2025.2
Unidecode==1.4.0

Cแบฅu trรบc dแปฑ รกn

BookStation
โ”‚   manage.py
โ”‚   requirements.txt
โ”‚   
โ”‚   
โ”œโ”€โ”€โ”€accounts
โ”‚   โ”‚   admin.py
โ”‚   โ”‚   apps.py
โ”‚   โ”‚   forms.py
โ”‚   โ”‚   models.py
โ”‚   โ”‚   tests.py
โ”‚   โ”‚   urls.py
โ”‚   โ”‚   views.py
โ”‚   โ”‚   __init__.py
โ”‚   โ”‚   
โ”‚   โ”œโ”€โ”€โ”€migrations
โ”‚   โ”‚   โ”‚   0001_initial.py
โ”‚   โ”‚   โ”‚   0002_alter_users_phone.py
โ”‚   โ”‚   โ”‚   __init__.py
โ”‚   โ”‚   โ”‚   
โ”‚   โ”‚   โ””โ”€โ”€โ”€__pycache__
โ”‚   โ”‚           0001_initial.cpython-311.pyc
โ”‚   โ”‚           0002_alter_users_phone.cpython-311.pyc
โ”‚   โ”‚           __init__.cpython-311.pyc
โ”‚   โ”‚           
โ”‚   โ”œโ”€โ”€โ”€templates
โ”‚   โ”‚   โ””โ”€โ”€โ”€accounts
โ”‚   โ”‚           base.html
โ”‚   โ”‚           edit_profile.html
โ”‚   โ”‚           login.html
โ”‚   โ”‚           profile.html
โ”‚   โ”‚           register.html
โ”‚   โ”‚           
โ”‚   โ””โ”€โ”€โ”€__pycache__
โ”‚           admin.cpython-311.pyc
โ”‚           apps.cpython-311.pyc
โ”‚           forms.cpython-311.pyc
โ”‚           models.cpython-311.pyc
โ”‚           urls.cpython-311.pyc
โ”‚           views.cpython-311.pyc
โ”‚           __init__.cpython-311.pyc
โ”‚           
โ”œโ”€โ”€โ”€analytics
โ”‚   โ”‚   admin.py
โ”‚   โ”‚   apps.py
โ”‚   โ”‚   models.py
โ”‚   โ”‚   tests.py
โ”‚   โ”‚   urls.py
โ”‚   โ”‚   views.py
โ”‚   โ”‚   __init__.py
โ”‚   โ”‚   
โ”‚   โ”œโ”€โ”€โ”€migrations
โ”‚   โ”‚   โ”‚   __init__.py
โ”‚   โ”‚   โ”‚   
โ”‚   โ”‚   โ””โ”€โ”€โ”€__pycache__
โ”‚   โ”‚           __init__.cpython-311.pyc
โ”‚   โ”‚           
โ”‚   โ”œโ”€โ”€โ”€templates
โ”‚   โ”‚   โ””โ”€โ”€โ”€analytics
โ”‚   โ”‚           book_inventory_detail.html
โ”‚   โ”‚           customer_stats.html
โ”‚   โ”‚           dashboard.html
โ”‚   โ”‚           order_stats.html
โ”‚   โ”‚           
โ”‚   โ””โ”€โ”€โ”€__pycache__
โ”‚           admin.cpython-311.pyc
โ”‚           apps.cpython-311.pyc
โ”‚           models.cpython-311.pyc
โ”‚           urls.cpython-311.pyc
โ”‚           views.cpython-311.pyc
โ”‚           __init__.cpython-311.pyc
โ”‚           
โ”œโ”€โ”€โ”€books
โ”‚   โ”‚   admin.py
โ”‚   โ”‚   apps.py
โ”‚   โ”‚   forms.py
โ”‚   โ”‚   models.py
โ”‚   โ”‚   tests.py
โ”‚   โ”‚   urls.py
โ”‚   โ”‚   views.py
โ”‚   โ”‚   __init__.py
โ”‚   โ”‚   
โ”‚   โ”œโ”€โ”€โ”€migrations
โ”‚   โ”‚   โ”‚   0001_initial.py
โ”‚   โ”‚   โ”‚   0002_alter_author_birth_date.py
โ”‚   โ”‚   โ”‚   __init__.py
โ”‚   โ”‚   โ”‚   
โ”‚   โ”‚   โ””โ”€โ”€โ”€__pycache__
โ”‚   โ”‚           0001_initial.cpython-311.pyc
โ”‚   โ”‚           0002_alter_author_birth_date.cpython-311.pyc
โ”‚   โ”‚           __init__.cpython-311.pyc
โ”‚   โ”‚           
โ”‚   โ”œโ”€โ”€โ”€templates
โ”‚   โ”‚   โ”œโ”€โ”€โ”€authors
โ”‚   โ”‚   โ”‚       author_confirm_delete.html
โ”‚   โ”‚   โ”‚       author_detail.html
โ”‚   โ”‚   โ”‚       author_form.html
โ”‚   โ”‚   โ”‚       author_list.html
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ”œโ”€โ”€โ”€books
โ”‚   โ”‚   โ”‚       book_confirm_delete.html
โ”‚   โ”‚   โ”‚       book_detail.html
โ”‚   โ”‚   โ”‚       book_form.html
โ”‚   โ”‚   โ”‚       book_list.html
โ”‚   โ”‚   โ”‚       search_results.html
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ”œโ”€โ”€โ”€categories
โ”‚   โ”‚   โ”‚       category_confirm_delete.html
โ”‚   โ”‚   โ”‚       category_detail.html
โ”‚   โ”‚   โ”‚       category_form.html
โ”‚   โ”‚   โ”‚       category_list.html
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ””โ”€โ”€โ”€publishers
โ”‚   โ”‚           publisher_confirm_delete.html
โ”‚   โ”‚           publisher_detail.html
โ”‚   โ”‚           publisher_form.html
โ”‚   โ”‚           publisher_list.html
โ”‚   โ”‚           
โ”‚   โ””โ”€โ”€โ”€__pycache__
โ”‚           admin.cpython-311.pyc
โ”‚           apps.cpython-311.pyc
โ”‚           forms.cpython-311.pyc
โ”‚           models.cpython-311.pyc
โ”‚           urls.cpython-311.pyc
โ”‚           views.cpython-311.pyc
โ”‚           __init__.cpython-311.pyc
โ”‚           
โ”œโ”€โ”€โ”€BookStation
โ”‚   โ”‚   .gitignore
โ”‚   โ”‚   asgi.py
โ”‚   โ”‚   settings.py
โ”‚   โ”‚   urls.py
โ”‚   โ”‚   wsgi.py
โ”‚   โ”‚   __init__.py
โ”‚   โ”‚   
โ”‚   โ”œโ”€โ”€โ”€templates
โ”‚   โ”‚       base.html
โ”‚   โ”‚       
โ”‚   โ””โ”€โ”€โ”€__pycache__
โ”‚           settings.cpython-311.pyc
โ”‚           urls.cpython-311.pyc
โ”‚           wsgi.cpython-311.pyc
โ”‚           __init__.cpython-311.pyc
โ”‚           
โ”œโ”€โ”€โ”€home
โ”‚   โ”‚   admin.py
โ”‚   โ”‚   apps.py
โ”‚   โ”‚   middleware.py
โ”‚   โ”‚   models.py
โ”‚   โ”‚   tests.py
โ”‚   โ”‚   urls.py
โ”‚   โ”‚   views.py
โ”‚   โ”‚   __init__.py
โ”‚   โ”‚   
โ”‚   โ”œโ”€โ”€โ”€migrations
โ”‚   โ”‚   โ”‚   __init__.py
โ”‚   โ”‚   โ”‚   
โ”‚   โ”‚   โ””โ”€โ”€โ”€__pycache__
โ”‚   โ”‚           __init__.cpython-311.pyc
โ”‚   โ”‚           
โ”‚   โ”œโ”€โ”€โ”€templates
โ”‚   โ”‚   โ””โ”€โ”€โ”€home
โ”‚   โ”‚           home.html
โ”‚   โ”‚           
โ”‚   โ””โ”€โ”€โ”€__pycache__
โ”‚           admin.cpython-311.pyc
โ”‚           apps.cpython-311.pyc
โ”‚           middleware.cpython-311.pyc
โ”‚           models.cpython-311.pyc
โ”‚           urls.cpython-311.pyc
โ”‚           views.cpython-311.pyc
โ”‚           __init__.cpython-311.pyc
โ”‚           
โ”œโ”€โ”€โ”€media
โ”‚   โ”œโ”€โ”€โ”€author
โ”‚   โ”‚       ToHoai_trong.jpg
โ”‚   โ”‚       victorhugo.webp
โ”‚   โ”‚       victorhugo_vwvL8TO.webp
โ”‚   โ”‚       
โ”‚   โ””โ”€โ”€โ”€book_covers
โ”‚           1984.jpg
โ”‚           1984_fDPUJc3.jpg
โ”‚           atomic_habits.jpg
โ”‚           book_1.jpg
โ”‚           book_10.jpg
โ”‚           book_11.jpg
โ”‚           book_12.jpg
โ”‚           book_13.jpg
โ”‚           book_14.jpg
โ”‚           book_15.jpg
โ”‚           book_16.jpg
โ”‚           book_17.jpg
โ”‚           book_18.jpg
โ”‚           book_19.jpg
โ”‚           book_2.jpg
โ”‚           book_20.jpg
โ”‚           book_3.jpg
โ”‚           book_4.jpg
โ”‚           book_5.jpg
โ”‚           book_6.jpg
โ”‚           book_7.jpg
โ”‚           book_8.jpg
โ”‚           book_9.jpg
โ”‚           Dacnhantam.jpg
โ”‚           demen1.jpg
โ”‚           educated.jpg
โ”‚           harry_potter_and_the_sorcerers_stone.jpg
โ”‚           jane_eyre.jpg
โ”‚           ngkk.webp
โ”‚           nhungnguoikhonkho_kwqGLyc.jpg
โ”‚           pride_and_prejudice.jpg
โ”‚           silent_patient.jpg
โ”‚           sukk1.jpg
โ”‚           the_catcher_in_the_rye.jpg
โ”‚           the_chronicles_of_narnia.jpg
โ”‚           the_da_vinci_code.jpg
โ”‚           the_great_gatsby.jpg
โ”‚           the_hobbit.jpg
โ”‚           to_kill_a_mockingbird.jpg
โ”‚           vu.jpg
โ”‚           
โ”œโ”€โ”€โ”€orders
โ”‚   โ”‚   admin.py
โ”‚   โ”‚   apps.py
โ”‚   โ”‚   forms.py
โ”‚   โ”‚   models.py
โ”‚   โ”‚   tests.py
โ”‚   โ”‚   urls.py
โ”‚   โ”‚   views.py
โ”‚   โ”‚   __init__.py
โ”‚   โ”‚   
โ”‚   โ”œโ”€โ”€โ”€migrations
โ”‚   โ”‚   โ”‚   0001_initial.py
โ”‚   โ”‚   โ”‚   0002_order_payment_method_alter_order_status.py
โ”‚   โ”‚   โ”‚   __init__.py
โ”‚   โ”‚   โ”‚   
โ”‚   โ”‚   โ””โ”€โ”€โ”€__pycache__
โ”‚   โ”‚           0001_initial.cpython-311.pyc
โ”‚   โ”‚           0002_order_payment_method_alter_order_status.cpython-311.pyc
โ”‚   โ”‚           __init__.cpython-311.pyc
โ”‚   โ”‚           
โ”‚   โ”œโ”€โ”€โ”€templates
โ”‚   โ”‚   โ””โ”€โ”€โ”€orders
โ”‚   โ”‚           base.html
โ”‚   โ”‚           cart.html
โ”‚   โ”‚           create_order.html
โ”‚   โ”‚           order_list.html
โ”‚   โ”‚           order_success.html
โ”‚   โ”‚           
โ”‚   โ””โ”€โ”€โ”€__pycache__
โ”‚           admin.cpython-311.pyc
โ”‚           apps.cpython-311.pyc
โ”‚           forms.cpython-311.pyc
โ”‚           models.cpython-311.pyc
โ”‚           urls.cpython-311.pyc
โ”‚           views.cpython-311.pyc
โ”‚           __init__.cpython-311.pyc
โ”‚           
โ”œโ”€โ”€โ”€reviews
โ”‚   โ”‚   admin.py
โ”‚   โ”‚   apps.py
โ”‚   โ”‚   forms.py
โ”‚   โ”‚   models.py
โ”‚   โ”‚   tests.py
โ”‚   โ”‚   urls.py
โ”‚   โ”‚   views.py
โ”‚   โ”‚   __init__.py
โ”‚   โ”‚   
โ”‚   โ”œโ”€โ”€โ”€migrations
โ”‚   โ”‚   โ”‚   0001_initial.py
โ”‚   โ”‚   โ”‚   0002_alter_review_book_delete_book.py
โ”‚   โ”‚   โ”‚   0003_review_rating.py
โ”‚   โ”‚   โ”‚   __init__.py
โ”‚   โ”‚   โ”‚   
โ”‚   โ”‚   โ””โ”€โ”€โ”€__pycache__
โ”‚   โ”‚           0001_initial.cpython-311.pyc
โ”‚   โ”‚           0002_alter_review_book_delete_book.cpython-311.pyc
โ”‚   โ”‚           0003_review_rating.cpython-311.pyc
โ”‚   โ”‚           __init__.cpython-311.pyc
โ”‚   โ”‚           
โ”‚   โ”œโ”€โ”€โ”€templates
โ”‚   โ”‚   โ””โ”€โ”€โ”€reviews
โ”‚   โ”‚           add_reviews.html
โ”‚   โ”‚           book_review.html
โ”‚   โ”‚           
โ”‚   โ””โ”€โ”€โ”€__pycache__
โ”‚           admin.cpython-311.pyc
โ”‚           apps.cpython-311.pyc
โ”‚           forms.cpython-311.pyc
โ”‚           models.cpython-311.pyc
โ”‚           urls.cpython-311.pyc
โ”‚           views.cpython-311.pyc
โ”‚           __init__.cpython-311.pyc
โ”‚           
โ”œโ”€โ”€โ”€staff
โ”‚   โ”‚   admin.py
โ”‚   โ”‚   apps.py
โ”‚   โ”‚   forms.py
โ”‚   โ”‚   models.py
โ”‚   โ”‚   test.py
โ”‚   โ”‚   tests.py
โ”‚   โ”‚   urls.py
โ”‚   โ”‚   views.py
โ”‚   โ”‚   __init__.py
โ”‚   โ”‚   
โ”‚   โ”œโ”€โ”€โ”€migrations
โ”‚   โ”‚   โ”‚   __init__.py
โ”‚   โ”‚   โ”‚   
โ”‚   โ”‚   โ””โ”€โ”€โ”€__pycache__
โ”‚   โ”‚           __init__.cpython-311.pyc
โ”‚   โ”‚           
โ”‚   โ”œโ”€โ”€โ”€templates
โ”‚   โ”‚   โ””โ”€โ”€โ”€staff
โ”‚   โ”‚       โ”‚   dashboard_staff.html
โ”‚   โ”‚       โ”‚   
โ”‚   โ”‚       โ”œโ”€โ”€โ”€accounts
โ”‚   โ”‚       โ”‚       add_users.html
โ”‚   โ”‚       โ”‚       change_user.html
โ”‚   โ”‚       โ”‚       list_users.html
โ”‚   โ”‚       โ”‚       
โ”‚   โ”‚       โ””โ”€โ”€โ”€books
โ”‚   โ”‚               add_author.html
โ”‚   โ”‚               add_book.html
โ”‚   โ”‚               add_category.html
โ”‚   โ”‚               add_publisher.html
โ”‚   โ”‚               change_author.html
โ”‚   โ”‚               change_book.html
โ”‚   โ”‚               change_category.html
โ”‚   โ”‚               change_publisher.html
โ”‚   โ”‚               view_author.html
โ”‚   โ”‚               view_book.html
โ”‚   โ”‚               view_category.html
โ”‚   โ”‚               view_publisher.html
โ”‚   โ”‚               
โ”‚   โ””โ”€โ”€โ”€__pycache__
โ”‚           admin.cpython-311.pyc
โ”‚           apps.cpython-311.pyc
โ”‚           forms.cpython-311.pyc
โ”‚           models.cpython-311.pyc
โ”‚           urls.cpython-311.pyc
โ”‚           views.cpython-311.pyc
โ”‚           __init__.cpython-311.pyc
โ”‚           
โ”œโ”€โ”€โ”€static
โ”‚   โ”œโ”€โ”€โ”€css
โ”‚   โ”‚   โ”œโ”€โ”€โ”€analytics
โ”‚   โ”‚   โ”‚       analytics.css
โ”‚   โ”‚   โ”‚       book_inventory_detail.css
โ”‚   โ”‚   โ”‚       customer_analysis.css
โ”‚   โ”‚   โ”‚       customer_stats.css
โ”‚   โ”‚   โ”‚       order_stats.css
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ”œโ”€โ”€โ”€author_detail
โ”‚   โ”‚   โ”‚       style.css
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ”œโ”€โ”€โ”€author_list
โ”‚   โ”‚   โ”‚       style.css
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ”œโ”€โ”€โ”€base
โ”‚   โ”‚   โ”‚       style.css
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ”œโ”€โ”€โ”€books
โ”‚   โ”‚   โ”‚       style.css
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ”œโ”€โ”€โ”€books_list
โ”‚   โ”‚   โ”‚       style.css
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ”œโ”€โ”€โ”€book_detail
โ”‚   โ”‚   โ”‚       style.css
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ”œโ”€โ”€โ”€category_detail
โ”‚   โ”‚   โ”‚       style.css
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ”œโ”€โ”€โ”€category_list
โ”‚   โ”‚   โ”‚       style.css
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ”œโ”€โ”€โ”€edit_profile
โ”‚   โ”‚   โ”‚       style.css
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ”œโ”€โ”€โ”€home
โ”‚   โ”‚   โ”‚       slide.css
โ”‚   โ”‚   โ”‚       style.css
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ”œโ”€โ”€โ”€login
โ”‚   โ”‚   โ”‚       style.css
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ”œโ”€โ”€โ”€profile
โ”‚   โ”‚   โ”‚       style.css
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ”œโ”€โ”€โ”€publisher_detail
โ”‚   โ”‚   โ”‚       style.css
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ”œโ”€โ”€โ”€publisher_list
โ”‚   โ”‚   โ”‚       style.css
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ”œโ”€โ”€โ”€register
โ”‚   โ”‚   โ”‚       style.css
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ”œโ”€โ”€โ”€search_results
โ”‚   โ”‚   โ”‚       style.css
โ”‚   โ”‚   โ”‚       
โ”‚   โ”‚   โ””โ”€โ”€โ”€staff
โ”‚   โ”‚           style.css
โ”‚   โ”‚           
โ”‚   โ”œโ”€โ”€โ”€image
โ”‚   โ”‚       Bachkhoadialy.jpg
โ”‚   โ”‚       demen.jpg
โ”‚   โ”‚       demen1.jpg
โ”‚   โ”‚       images1.jpg
โ”‚   โ”‚       tuduynhanhcham.jpeg
โ”‚   โ”‚       yourname.gif
โ”‚   โ”‚       yourname.jpg
โ”‚   โ”‚       
โ”‚   โ””โ”€โ”€โ”€js
โ”‚       โ”‚   analytics.js
โ”‚       โ”‚   
โ”‚       โ”œโ”€โ”€โ”€analytics
โ”‚       โ”‚       customer_stats.js
โ”‚       โ”‚       order_stats.js
โ”‚       โ”‚       
โ”‚       โ”œโ”€โ”€โ”€base
โ”‚       โ”‚       script.js
โ”‚       โ”‚       
โ”‚       โ”œโ”€โ”€โ”€book_detail
โ”‚       โ”‚       quantity-control.js
โ”‚       โ”‚       
โ”‚       โ””โ”€โ”€โ”€home
โ”‚               banner_slider.js
โ”‚               script.js
โ”‚               
โ””โ”€โ”€โ”€templates
        base.html
        

๐Ÿ“ Ghi chรบ

  • Thฦฐ mแปฅc venv/ ฤ‘รฃ ฤ‘ฦฐแปฃc bแป qua nhแป .gitignore.
  • Nแบฟu gแบทp lแป—i git push, hรฃy chแบฏc chแบฏn bแบกn ฤ‘รฃ git pull trฦฐแป›c ฤ‘รณ.

๐Ÿ“„ License

This project is licensed under the MIT License.

About

Book Store website with django

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 50.4%
  • CSS 24.0%
  • Python 19.1%
  • JavaScript 6.5%
0