Cynnexis / tide

🌊 Tide is an application that helps reduce panic attacks with a simple breathing exercise.

Home Page:https://cynnexis.github.io/tide/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

🌊 Tide - Breathing Exercise to Calm Yourself Down

Tide CI/CD website status Tide Release repo size total release download license

Tide Cover

Tide is an application that helps reduce panic attacks with a simple breathing exercise.

Official website: cynnexis.github.io/tide/

Get it on Google Play
Go to the Webapp

🎯 Goals

Panic attacks can happen anywhere, at anytime. In a world where we have access to a limitless number of digital resources at the tip of our fingers, we can reduce those attacks through different ways (apps, videos, etc.). However, as I experienced multiple times, most of those resources are placed behind advertisements, which can be irritating or even aggravating depending on the content. Those useful resources should always be available for people traversing those delicate moments, and have an ads-free experience.

Hence, I initiated Tide, a very simple app that help the user to calm themselves down by timing the breath in and breath out, and imitating the diaphragm dilatation, while being free with no advertisements. As a result, anyone can have this application and use it with no stress of being disturbed by one of this awful and distressful ad.

πŸ“₯ Download built releases

You can download the built executables or installers from the release page, or from here to get the latest version:

Android:

iOS:

⚠️ This package has not been signed.

⚠️ The developers behind this project do not have a macOS and an iPhone. This package has been compiled through the CI/CD workflow, with the OSX runner. As a result, it has not been tested, and might not work as expected.

Windows:

Web:

The web release is a compressed archive containing the built HTML, CSS and JavaScript files to serve the application.

πŸ”Œ Getting Started

The following instructions will get you a copy of the source code, and help you execute it.

πŸ“¦ Requirements

This project requires Flutter, SDK version: minimum 2.3.0.

βš’οΈ Installation

The first thing to do is to download the project, either by downloading the ZIP file and extract it somewhere in your machine, or by cloning the project with git clone https://github.com/Cynnexis/tide.git tide.

Then, you need to configure the project by creating tide.yaml at the root of the project. You can copy it from tide.sample.yaml to have the structure of the configuration. Then, edit it to configure the Tide project and customize it.

Note that you can rename this file tide.yml (and not .yaml), but you will need to change the asset name in pubspec.yaml.

The following steps will assume that the current directory is the project root.

  1. flutter create --no-overwrite .
  2. flutter pub get
  3. flutter run

The app should be running now.

🐳 Using Docker

You can build a Docker image to serve the web application of Tide. All Docker files are stored under the docker/ folder, but you can use the Makefile commands to build it.

To build them, enter the following command:

make build-docker

This command will call docker/build.bash, a bash script that uses tide.yaml to build the Dockerfiles. At the end of the process, you should have the Docker image cynnexis/tide:web, that you can use to serve the application:

With the Makefile:

make docker-server

... or with the docker command:

docker run -d \
	--name=tide-web \
	--hostname="tide-web" \
	--publish 80:80 \
	-v "/etc/timezone:/etc/timezone:ro" \
	-v "/etc/localtime:/etc/localtime:ro" \
	-e TZ \
	"cynnexis/tide:web"

And connect to http://localhost:80/

βœ… Tests

Tide has units, widgets and integration tests. This section will help you understand how tests are structured, and how to execute them.

Unit and Widget Tests

Unit and widget test files are stored under the test/ directory. All files that ends with _test.dart are considered test files.

Most widget tests uses golden files to assert that they render as expected. However, according to the Flutter issue #36667, golden images might change from one platform to another. That is why all golden images stored in test/golden-images/ are separated in sub-folders representing the platform. However, not all golden images might have been created, as the platforms might not be accessible by the developer(s). If you notice that the golden files are missing for your platform, please execute the following command at the root of the project:

make update-goldens

... or:

flutter test --update-goldens --dart-define=FLUTTER_TEST=true

This will generate all golden images for your platform. We encourage you to create a pull-request with the new golden images to contribute to the project!

Once the golden files are ready, you can execute the tests with:

make test

... or:

flutter test --dart-define=FLUTTER_TEST=true

You can also execute the test in a Docker container. To do so, first build the cynnexis/tide:sdk Docker image:

./docker/build.bash --only=sdk

Then, execute:

make docker-test

... or:

docker run -it --rm --name=tide-tests cynnexis/tide:sdk test --concurrency=1 --dart-define=FLUTTER_TEST=true

Integration Tests

Only one integration test workflow has been created, and is stored under integration_test/tide_test.dart.

Desktop and mobile devices

To launch it for desktop or mobile devices, use:

make test-integration

... or:

flutter test --dart-define=FLUTTER_TEST=true integration_test/tide_test.dart

Web

To launch it for web, you first need to download the ChromeDriver and launch it:

chromedriver --port=4444

In another terminal, execute the following command at the root of the Tide project:

make test-integration-web

... or:

flutter drive \
  --driver=test_driver/integration_test.dart \
  --target=integration_test/tide_test.dart \
  --dart-define=FLUTTER_TEST=true \
  -d web-server

πŸ—οΈ Build With

Dart Flutter Android Studio Git GitHub GitHub Actions Docker Apache Inkscape

🀝 Contributing

To contribute to this project, please read our CONTRIBUTING.md file.

We also have a code of conduct to help create a welcoming and friendly environment.

✍️ Authors

Please see the CONTRIBUTORS.md file.

πŸ“„ License

This project is under the GNU Affero General Public License v3. Please see the LICENSE file for more detail (it's a really fascinating story written in there!).

About

🌊 Tide is an application that helps reduce panic attacks with a simple breathing exercise.

https://cynnexis.github.io/tide/

License:GNU Affero General Public License v3.0


Languages

Language:Dart 75.9%Language:C++ 7.4%Language:Dockerfile 4.5%Language:Makefile 3.8%Language:CMake 3.5%Language:Shell 2.7%Language:HTML 1.8%Language:C 0.3%Language:Swift 0.2%Language:Kotlin 0.1%Language:Objective-C 0.0%