Art Event Finder is a dynamic platform designed to connect art enthusiasts with a wide range of art events. This project aims to make it easier for people to discover and engage with art events in their region, which are often challenging to find due to a lack of centralized information. The platform serves as a bridge between artists, art groups, and the community, enhancing the visibility of local art events and fostering a vibrant art scene.
- Art Enthusiasts: Individuals who are passionate about experiencing and supporting various forms of art, including music, theater, dance, and visual arts.
- Artists and Art Groups: Creators seeking to promote their events, reach a broader audience, and engage more effectively with their fans.
- Art Event Organizers: Professionals and organizations that organize art-related events and seek a platform for promotion and audience engagement.
- User and Artist Accounts: Separate account types for regular users and artists, with customized features for each.
- Event Discovery: Users can discover art events based on preferences such as location, art category, and artist.
- Social Media Integration: Automatic event creation through monitoring artists' social media channels, particularly Instagram.
- Follow System: Users can follow their favorite artists to get updates and notifications about upcoming events.
- Admin Moderation: Admins can approve or reject artist accounts and event postings, ensuring content quality and reliability.
- Event Source Tracking: Users can suggest new social media accounts for event source tracking, subject to admin approval.
- Backend API developed using [Your Chosen Technology Stack]
- Integration with Keycloak for authentication and authorization
- Utilization of message queues for background processing and notifications
- Leveraging external APIs for social media integration and event data extraction
Configure your envs files. .env
is used by docker compose and config.yml
is used by the server
cp .env.example .env
cp config.yml.example config.yml
Build web server image and initialize docker containers
./scripts/build_and_start_docker.sh
If it's your first time running the project, create a new Realm on KeyCloak
- Go to
127.0.0.1:8081
- Login to Administration Console using username and password that are configured inside
.env
- Click at Create realm at the dropdown menu on the top left
- Import
events_finder_realm.json
and create it
Configure git pre-push hook to make sure the code is valid before pushing it
ln -s ../../scripts/pre-push.sh .git/hooks/pre-push
- address: Address where the server is connected to
- port: Port where the server is connected to
- keycloak_realm: Target keycloak realm. Use config.yml.example value if you're using
events_finder_realm.json
to create the realm - keycloak_client_id: Client it used by the server to connect to keycloak. Use config.yml.example value if you're using
events_finder_realm.json
to create the realm - keycloak_client_secret: Client secret required to use the client. To get it do the following steps:
- Go to Keycloak admin console
- Select the realm configured by
keycloak_realm
config - At Clients menu, select the client configured by
keycloak_client_id
config - At Credentials tab, you'll find the Client Secret
- Replace
<client-secret>
by the secret
- keycloak_base_url: Keycloak's address. Use config.yml.example value if you're running keycloak configured at docker-compose.yml
- keycloak_jwt_public_key: Keycloak realm's RS256 public key. To get it do the following steps:
- Go to Keycloak admin console
- Select the realm configured by
keycloak_realm
config - At _Realm settings" menu, go to Keys tab
- Get the RS256 public key
- Replace
<jwt-public-key>
by the key