Thank you for your interest in contributing to CineMit ! This is the presentation website for the group cinema meet-up app, available for download on the PlayStore. The website is built using Flutter.
Before you begin you need to optain an API key from TMDB.
After you have to insert the string of API kei into this file.
You need to install Flutter and Dart, you can find instructions from the official website
From the source of project you can execute flutter run
to start project on your localhost.
The website is hosted on Netlify and points to the build/web folder. Each time the command flutter build web
is run, a trigger will reload the Netlify server, automatically updating the website.
Before making any changes, please fork the main repository. You can do this by clicking on the Fork button at the top right on GitHub. This will create a copy of the project in your account.
Clone the forked repository to your local machine using the following command:
git clone https://github.com/ctrlVnt/cinemit_website.git
It's always a good idea to work on a new branch for each modification you propose:
git checkout -b branch-name
After making the changes, create a commit with a meaningful message:
git add .
git commit -m "Description of the changes made"
Then push the branch with the changes to your GitHub repository:
git push origin branch-name
Now that your changes are pushed, it's time to open a Pull Request (PR):
- Go to the original repository (the one you forked from).
- Click on the "New Pull Request" button.
- Select the branch you just pushed and complete the description of your PR.
- Provide a detailed explanation of what you changed and why.
For any questions or clarifications, feel free to reach out to the project maintainers via the Issues section or by sending an email to [email protected].
Thank you for your contribution!