This is a Flask-based web application where:
- Artists can register, log in, create shows, view audience interest and likes.
- Audience members can register, log in, like performances, request specific art forms, and share artist shows on various platforms.
- Register/Login as artist
- Create and manage shows
- View how many people liked their shows
- See performance requests from audience
- Register/Login as audience
- Like artist shows
- Request performances (e.g., dance, storytelling)
- Share artist shows on social media platforms
- Backend: Flask (Python)
- Database: SQLite (via SQLAlchemy ORM)
- Frontend: HTML, Bootstrap (Jinja2 templating)
βββ app/
β βββ __init__.py
β βββ models.py
β βββ routes.py
β βββ forms.py
β βββ templates/
β β βββ base.html
β β βββ login.html
β β βββ register.html
β β βββ dashboard.html
β β βββ ...
βββ static/
β βββ style.css
βββ config.py
βββ run.py
βββ requirements.txt
βββ README.md