#photo-log-generator
- Allows user to input a zip file of photos.
- User can preview the photos, add caption on each photo, change the photo order and save.
- After saving project, user can generate photo log report.
- User can also choose to download tempfile to resume the project later.
#Database Configuration if mysql has not been configured
- sudo apt-get update
- sudo apt-get install mysql-server
- sudo mysql_secure_installation
- sudo mysql_install_db
- sudo apt-get install mysql-client
- sudo apt-get install libmysqlclient-dev
#Updating Python
- pip install --upgrade pip
- pip install --upgrade pillow
- sudo apt-get install libjpeg8-dev
- pip install xlrd orbit python-docx docx2txt
##Installation
- Clone the repo.
- pip install -r requirements.txt
- sudo mysql -p
- create database photoreport;
- exit;
- update mysql credentials in photoreport/settings.py line 80.
##Running the server
- python manage.py makemigrations
- python manage.py migrate
- python manage.py runserver 4.optional python manage.py runserver 0.0.0.0:8000 (allows computers external to access)
- View 127.0.0.1:8000 on the local computer or use the ipaddress of the computer to access externally.
##git quick instructions: %: git clone repoAddress %: git pull origin %: git add files %: git commit -am 'what i changed' %: git push origin master