├── .github └── workflows │ └── Flutter.yml └── README.md /.github/workflows/Flutter.yml: -------------------------------------------------------------------------------- 1 | name: Android Build Release 2 | on: 3 | push: 4 | branches: ["FlutterFrontEnd"] 5 | pull_request: 6 | branches: ["FlutterFrontEnd"] 7 | workflow_dispatch: 8 | 9 | jobs: 10 | build: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v3 14 | - uses: actions/setup-java@v3 15 | with: 16 | distribution: "zulu" 17 | java-version: "12.x" 18 | - uses: subosito/flutter-action@v2 19 | with: 20 | flutter-version: "3.0.0" 21 | channel: "stable" 22 | - name: Flutter Update 23 | run: flutter upgrade 24 | 25 | - name: Get dependencies 26 | continue-on-error: true 27 | run: flutter pub get 28 | 29 | - name: Remove Apks 30 | continue-on-error: true 31 | run: rm -r build 32 | 33 | - name: Start release build 34 | run: flutter build apk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # syncLights 2 | [![](https://img.shields.io/badge/syncLights-v1.0.0-blue)](#) 3 | [![Stars](https://img.shields.io/github/stars/IshanSingla/syncLights?style=flat-square&color=yellow)](https://github.com/IshanSingla/syncLights/stargazers) 4 | [![Forks](https://img.shields.io/github/forks/IshanSingla/syncLights?style=flat-square&color=orange)](https://github.com/IshanSingla/syncLights/fork) 5 | [![Size](https://img.shields.io/github/repo-size/IshanSingla/syncLights?style=flat-square&color=green)](https://github.com/IshanSingla/syncLights/) 6 | [![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://github.com/IshanSingla/syncLights/graphs/commit-activity) 7 | [![Open Source Love svg2](https://badges.frapsoft.com/os/v2/open-source.svg?v=103)](https://github.com/IshanSingla/syncLights) 8 | 9 | ## Attention !!! 10 | ## This Product can Save you 10 min a Day 11 | Let us imagine you are stuck in a traffic jam, 12 | Cars and buses all around, not moving an inch, damn! 13 | The honking and the noise, the heat and the fumes, 14 | It's enough to make anyone feel stuck in their rooms, 15 | then what will you do? 16 | 17 | ## Well you have Many Options According to Us 18 | ```python 19 | [ 20 | "You could listen to music or a podcast show", 21 | "Catch up on some reading, it's a perfect moment to go slow", 22 | "Take some deep breaths, meditate or practice mindfulness, And in no time, you'll feel calm and stress-less.", 23 | "Even play some games with friends", 24 | ] 25 | ``` 26 | 27 | ## Solution 28 | 29 | 30 | ## Source Codes 31 | * [FlutterFrontEnd](https://github.com/IshanSingla/syncLights/tree/FlutterFrontEnd) 32 | * [NodeBackend](https://github.com/IshanSingla/syncLights/tree/NodeBackend) 33 | 34 | # Credits 🇮🇳 35 | * ![TeamUnitedDebuggers-Devs](https://img.shields.io/static/v1?label=TeamUnitedDebuggers&message=devs&color=critical) 36 | * [Flutter](https://github.com/flutter/flutter) 37 | * [Socket.io](https://github.com/socketio/socket.io) 38 | * [Node.Js](https://github.com/nodejs) 39 | * [Docker](https://github.com/jenkinsci/docker) 40 | * [Nginx](https://github.com/nginx/nginx) 41 | 42 | 43 | > Made with 💕 by ![TeamUnitedDebuggers-Devs](https://img.shields.io/static/v1?label=TeamUnitedDebuggers&message=devs&color=critical) --------------------------------------------------------------------------------