Personal project from high school.
My first attempt combining both VR and back-end development.
The goal was to let users create and manipulate 3D objects in VR through the web.
We used Django and MySQL to store user information and their VR objects (which was devastating).
- You must install Django(of course python too) in your Desktop : $ pip install Django
- You must install Django-colorful for color object : $ pip install django-colorful
- You must install mysqlclient : $ pip install mysqlclient
- You must install django-crispy for template problem : $ pip install django-crispy
- You must install Pillow for Image Field : $ pip install Pillow
- You must install django-extra-views for create, update view : $ pip install django-extra-views
- open cmd in your desktop
- go to the directory where your 'manage.py' located
- input 'python manage.py runserver'
- open your browser and browse "http://127.0.0.1:8000/"
In this project, I used a database called MySQL with Bitnami XAMP. So, for copping the settings.py, you have to install MySQL DataBase and Set your DataBase ID and PW in Settings.py. Or, you can change the settings for SQLite in Settings.py
//if there is a error by the port, try to change your port like 'python manage.py runserver 8080'