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
git clone https://github.com/ZACZ1NH0/BookStation.git
cd BookStation
โ ๏ธ ฤแบฃ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
pip install -r requirements.txt
##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'"
},
}
}
python manage.py migrate
python manage.py runserver
๏ปฟ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
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
- 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 ฤรณ.
This project is licensed under the MIT License.