insta-hashtags
A simple tool to help generate hashtags for your Instagram posts based on categories and lists of hashtags which you define. You'll need both the front and backend servers running, as follows:
Backend
Built with Django, and Vue for the frontend
Setup
- run
pipenv install
to install dependencies - create a MySQL database called 'hashtags'
- update Database credentials if applicable in
insta-hashtags/settings.py
- run migrations with:
python3 manage.py migrate
- create super user with:
python3 manage.py createsuperuser
- run
python3 manage.py runserver