Courtly is an mobile app for sports field booking with an innovation to overcome traditional booking systems. By utilizing technology, users can make reservations for sports field facilities only through their smartphone gadgets without the need to come to the location or chat via WhatsApp. Courtly can also provide real-time field availability information, allowing users to choose the time they want, and can make payments directly with flexible and secure methods.
Courtly app includes several features, such as:
- Find Courts: Browse sports courts you want by types.
- Court Booking: Book sports courts quickly.
- Ratings & Reviews: Rate courts and players for a better experience.
- Flexible & Secure Payment: Order a sports courts with a single-tap and various secure payment.
- Flutter SDK: Install Flutter.
- Dart: Comes with Flutter but ensure it's installed.
- Backend Server: Visit backend repo.
- Flutter
- Android Studio (optional) / VSCode
- Mobile phone emulator
Follow these steps to set up the project locally:
- Clone the repository:
git clone https://github.com/bryanfks-dev/Courtly.git
cd Courtly
- Install depedencies:
flutter pub get
- Configure configs:
cd lib/core/config
Set the backend server ip address and api version:
/// [baseUrl] is the base URL of the API server.
static const String baseUrl = '...';
/// [version] is the version of the API server.
/// [version] should always start with 'v' followed by the version number.
static const String version = 'v...';
Set the midtrans client key:
/// [clientKey] is the client key from Midtrans
static const String clientKey = "...";
- Start your emulator:
For AVD Emulator:
emulator -avd <avd_name>
- Start the app:
flutter run
This project is licensed under the MIT License.