Project : Face tagging
Introduction : This django project contains basic face tagging application.
Database : there are two tables in database(sqlite)
This contains imformation of all images
It contains imfomation of tags related to a image.
- There is a view.py fle inside "tagging" app of this project where all backend operations are handled
"Templates" and "static" folder contains all the frontend part. "index.html" - It will show all images stored in database. "details.html" - It will show details related to a images (all the tags).
Ajax is used to fetch the data.
- python manage.py migrate
- python manage.py createsuperuser
- python manage.py runserver
- open 127.0.0.1:8000/images/ in browser.
- open 127.0.0.1:8000/api/ (for json data)
- intsall npm
- npm install -g babel babel-cli
- npm create-react-app
- npm i webpack webpack-dev-server react react-dom jquery --save
- npm start