#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
##Installation
- Clone the repo.
- pip install -r requirements.txt
- create mysql database photoreport & update mysql credentials in photoreport/settings.py line 80.
- python manage.py migrate
- python manage.py runserver 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 instructions:
- git add files
- git commit -am 'what i changed'
- git push origin master