Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tseli0s committed Dec 21, 2023
0 parents commit 069a006
Show file tree
Hide file tree
Showing 159 changed files with 7,075 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/flutter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build / Testing

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: subosito/[email protected]
with:
channel: beta # Puts some pressure on us to support future versions easily
cache: true
- run: sudo apt-get update -y && sudo apt-get install -y ninja-build libgtk-3-dev
- run: flutter config --enable-linux-desktop
- run: flutter build linux

51 changes: 51 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/

# IntelliJ related
*.iml
*.ipr
*.iws
.idea/

# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/

# Flutter/Dart/Pub related
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.pub-cache/
.pub/
/build/

# Symbolication related
app.*.symbols

# Obfuscation related
app.*.map.json

# Android Studio will place build artifacts here
/android/app/debug
/android/app/profile
/android/app/release

# Flatpak stuff
/.flatpak
/.flatpak-builder
repo
data/data
data/lib
data/fltext
45 changes: 45 additions & 0 deletions .metadata
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# 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: "e33d4b86270e3c012ba13d68d6e90f2eabc4912b"
channel: "master"

project_type: app

# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: e33d4b86270e3c012ba13d68d6e90f2eabc4912b
base_revision: e33d4b86270e3c012ba13d68d6e90f2eabc4912b
- platform: android
create_revision: e33d4b86270e3c012ba13d68d6e90f2eabc4912b
base_revision: e33d4b86270e3c012ba13d68d6e90f2eabc4912b
- platform: ios
create_revision: e33d4b86270e3c012ba13d68d6e90f2eabc4912b
base_revision: e33d4b86270e3c012ba13d68d6e90f2eabc4912b
- platform: linux
create_revision: e33d4b86270e3c012ba13d68d6e90f2eabc4912b
base_revision: e33d4b86270e3c012ba13d68d6e90f2eabc4912b
- platform: macos
create_revision: e33d4b86270e3c012ba13d68d6e90f2eabc4912b
base_revision: e33d4b86270e3c012ba13d68d6e90f2eabc4912b
- platform: web
create_revision: e33d4b86270e3c012ba13d68d6e90f2eabc4912b
base_revision: e33d4b86270e3c012ba13d68d6e90f2eabc4912b
- platform: windows
create_revision: e33d4b86270e3c012ba13d68d6e90f2eabc4912b
base_revision: e33d4b86270e3c012ba13d68d6e90f2eabc4912b

# 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'
7 changes: 7 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"files.watcherExclude": {
"**/.dart_tool": true,
".flatpak/**": true,
"_build/**": true
}
}
Loading

0 comments on commit 069a006

Please sign in to comment.