-
Notifications
You must be signed in to change notification settings - Fork 3
Installation Guide
Nguyen Long Vu edited this page May 28, 2025
·
7 revisions
git clone https://github.com/ZACZ1NH0/BookStation.git
cd BookStation
py -3.11 -m venv venv
- Activate the environment: .\venv\Scripts\activate
pip install -r requirements.txt
Create a database named bookstore_db and use the following settings:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'bookstore_db',
'USER': 'root',
'PASSWORD': '1234',
'HOST': 'localhost',
'PORT': '3306',
'OPTIONS': {
'init_command': "SET sql_mode='STRICT_TRANS_TABLES'"
},
}
}