โปรเจ็คนี้เป็นส่วนหนึ่ง CPE231 Database System จัดทำโดย นักศึกษาชั้นปีที่ 3 มหาวิทยาลัยเทคโนโลยีพระจอมเกล้าธนบุรี
Member in team : 'P'EyeSangLuis Team' 🐶
- 👩 Ms.Natchariya Wongamnuayporn 61070507204
- 👨 Mr.Natchapol Patamawisut 61070507205
- 👩 Ms.Thanaporn Cheentada 61070507209
create a virtualenv and run requirements.txt
virtualenv
pip install virtualenv
what is virtual environment ?
A virtual environment is a tool that helps to keep dependencies required by different projects separate by creating isolated python virtual environments for them. This is one of the most important tools that most of the Python developers use.
read more...
to run requirements.txt
$ pip install -r requirements.txt
here env/ folder contains all dependencies
-
clone repository
$ git clone https://github.com/Natchariyawong25/P-EYE-and-Friends-Hotel-Management.git
-
setting in 'setting.py
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'hotel', // ชื่อ database ใน pgAdmin 'USER': 'Username', // ใส่ Username pgAdmin ของตัวเอง เพื่อไว้เชื่อมกับ local database 'PASSWORD': '********* ', // ใส่ password pgAdmin ของตัวเอง เพื่อไว้เชื่อมกับ local database 'PORT': '', } }
-
run migrations ไว้เชื่อมกับ database
$ python manage.py migrate
-
now, runserver
$ python manage.py runserver
-
now, runserver
$ python manage.py runserver
- HTML + CSS ใช้ทำหน้า Website
- django เพื่อเป็นตัวกลางในการเชื่อม database กับ pgAdmin
version 1.0.0 base on 13/12/2020