-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a329cf0
commit 2570525
Showing
588 changed files
with
31,563 additions
and
14,993 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"flutter": "3.22.1", | ||
"flavors": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
*.freezed.dart linguist-generated=true | ||
*.g.dart linguist-generated=true | ||
*.gr.dart linguist-generated=true | ||
pubspec.lock linguist-generated=true | ||
Gemfile.lock linguist-generated=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Support for pub is in beta, and thus, we are aware of some limitations. For example, security updates are not supported in this release but will be in the future. | ||
# | ||
# Other known limitations: | ||
# | ||
# - No support for updating git-dependencies | ||
# - If the version found is ignored (by dependabot config) no update will happen (even if, an earlier version could be used) | ||
# - No support for private package repositories | ||
|
||
version: 2 | ||
enable-beta-ecosystems: true | ||
updates: | ||
- package-ecosystem: 'pub' | ||
directory: '/' | ||
schedule: | ||
interval: 'daily' | ||
open-pull-requests-limit: 2 | ||
commit-message: | ||
prefix: 'chore: ' | ||
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
schedule: | ||
interval: 'daily' | ||
open-pull-requests-limit: 2 | ||
commit-message: | ||
prefix: 'chore: ' | ||
- package-ecosystem: 'bundler' | ||
directory: '/' | ||
schedule: | ||
interval: 'daily' | ||
open-pull-requests-limit: 2 | ||
commit-message: | ||
prefix: 'chore: ' | ||
- package-ecosystem: 'bundler' | ||
directory: '/ios/' | ||
schedule: | ||
interval: 'daily' | ||
open-pull-requests-limit: 2 | ||
commit-message: | ||
prefix: 'chore: ' | ||
- package-ecosystem: 'bundler' | ||
directory: '/android/' | ||
schedule: | ||
interval: 'daily' | ||
open-pull-requests-limit: 2 | ||
commit-message: | ||
prefix: 'chore: ' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
|
||
printf "\e[33;1m%s\e[0m\n" 'Running the Pre-push checks' | ||
./scripts/checks.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"LABEL": { | ||
"name": "Title needs formatting", | ||
"color": "EEEEEE" | ||
}, | ||
"CHECKS": { | ||
"prefixes": ["fix: ", "feat: ", "docs: ", "refactor: ", "test: ", "chore: "], | ||
"ignoreLabels" : ["meta"] | ||
}, | ||
"MESSAGES": { | ||
"success": "All OK", | ||
"failure": "Failing CI test", | ||
"notice": "" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Flutter CI | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'zulu' | ||
java-version: '11' | ||
- uses: dart-lang/[email protected] | ||
- uses: subosito/flutter-action@v2 | ||
with: | ||
channel: 'stable' | ||
cache: true | ||
- name: Cache FVM & Flutter | ||
uses: actions/cache@v3 | ||
with: | ||
path: /home/runner/fvm/versions/ | ||
key: ${{ runner.os }}-${{ hashFiles('**/fvm_config.json') }} | ||
- name: Cache pub cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: /home/runner/.pub-cache/ | ||
key: ${{ runner.os }}-pub-cache | ||
- name: Install FVM && Flutter | ||
run: dart pub global activate fvm --verbose && fvm install --verbose && fvm use --force --verbose | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
bundler-cache: true | ||
- name: Activate arb_utils | ||
run: | | ||
dart pub global activate arb_utils 0.8.1 | ||
- name: Get dependencies | ||
uses: maierj/[email protected] | ||
with: | ||
lane: 'fetch_dependencies' | ||
- name: 'Run lints' | ||
uses: maierj/[email protected] | ||
with: | ||
lane: 'lints' | ||
- name: 'Check generated code' | ||
uses: maierj/[email protected] | ||
with: | ||
lane: 'ensure_no_change_in_generated_code' | ||
- name: 'Run tests' | ||
uses: maierj/[email protected] | ||
with: | ||
lane: 'tests' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: "PR Title Checker" | ||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
- labeled | ||
- unlabeled | ||
|
||
jobs: | ||
check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: thehanimo/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
pass_on_octokit_error: false | ||
configuration_path: ".github/pr-title-checker-config.json" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# This file tracks properties of this Flutter project. | ||
# Used by Flutter tool to assess capabilities and perform upgrades etc. | ||
# | ||
# This file should be version controlled and should not be manually edited. | ||
|
||
version: | ||
revision: "a14f74ff3a1cbd521163c5f03d68113d50af93d3" | ||
channel: "stable" | ||
|
||
project_type: app | ||
|
||
# Tracks metadata for the flutter migrate command | ||
migration: | ||
platforms: | ||
- platform: root | ||
create_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3 | ||
base_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3 | ||
- platform: web | ||
create_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3 | ||
base_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3 | ||
|
||
# User provided section | ||
|
||
# List of Local paths (relative to this file) that should be | ||
# ignored by the migrate tool. | ||
# | ||
# Files that are not part of the templates will be ignored by default. | ||
unmanaged_files: | ||
- 'lib/main.dart' | ||
- 'ios/Runner.xcodeproj/project.pbxproj' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.2.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "ClientApp Staging", | ||
"request": "launch", | ||
"type": "dart", | ||
"program": "lib/main.dart", | ||
"args": [ | ||
"--flavor=staging", | ||
"--dart-define=ENV=staging" | ||
] | ||
}, | ||
{ | ||
"name": "ClientApp Production", | ||
"request": "launch", | ||
"type": "dart", | ||
"program": "lib/main.dart", | ||
"args": [ | ||
"--flavor=production", | ||
"--dart-define=ENV=production" | ||
] | ||
}, | ||
{ | ||
"name": "ClientApp (profile mode)", | ||
"request": "launch", | ||
"type": "dart", | ||
"program": "lib/main.dart", | ||
"args": [ | ||
"--profile", | ||
"--flavor=staging", | ||
"--dart-define=ENV=staging", | ||
], | ||
}, | ||
{ | ||
"name": "ClientApp (release mode)", | ||
"request": "launch", | ||
"type": "dart", | ||
"flutterMode": "release" | ||
}, | ||
{ | ||
"name": "Integration Test", | ||
"program": "integration_test/", | ||
"request": "launch", | ||
"type": "dart" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "fastlane" | ||
gem 'fastlane-plugin-flutter_version' | ||
gem 'cocoapods' | ||
|
||
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile') | ||
eval_gemfile(plugins_path) if File.exist?(plugins_path) |
Oops, something went wrong.