https://github.com/dhafinfawwaz/project-book-django
Tubes Pengkom ITB
https://github.com/dhafinfawwaz/project-book-django
Last synced: 2 months ago
JSON representation
Tubes Pengkom ITB
- Host: GitHub
- URL: https://github.com/dhafinfawwaz/project-book-django
- Owner: DhafinFawwaz
- Created: 2022-10-31T08:59:57.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-07T16:23:51.000Z (over 2 years ago)
- Last Synced: 2025-02-13T22:45:07.668Z (4 months ago)
- Language: Python
- Size: 23.6 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Project Book

Tugas besar mata kuliah Pengenalan Komputasi Institut Teknologi Bandung. Project berupa website eccomerce buku. Dapat di akses pada https://tubes-eccomerce.herokuapp.com/
Update(October 26): heroku sudah tidak gratis lagi, jadi silahkan ikuti instruksi di bawah saja## 📖 Instruction
### ✨ Getting StartedRun the following command to get started. Just copy, paste, execure these commands. The local website is usually http://127.0.0.1:8000/. If you just copy paste these commands, don't forget to execute the latest line.
```
git clone https://github.com/DhafinFawwaz/Project-Book-Django.git
cd ./Project-Book-Django
py -m venv venv
venv\Scripts\activate.bat
py -m pip install Django
py -m pip install Pillow
cd ./ProjectBook
py -m pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
py manage.py runserver```
### 🔃 Run Local Server
Run following command to run the server locally
```
venv\Scripts\activate.bat
cd ./ProjectBook
py manage.py runserver
```