Skip to content

Commit 5ce3bd2

Browse files
committed
server-deployed-service
1 parent d15f6a7 commit 5ce3bd2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ jobs:
2626
uses: ncipollo/release-action@v1
2727
with:
2828
artifacts: "build/app/outputs/apk/release/*"
29-
tag: v1.0.6
29+
tag: v1.0.6.1
3030
token: ${{ secrets.TOKEN }}

lib/features/meditation/data/sources/meditation_remote_source.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class MeditationRemoteDataSourceImpl implements MeditaionRemoteDataSource {
1717
Future<DailyQuoteModel> getDailyQuote() async {
1818
final response = await client
1919
// .get(Uri.parse('http://10.0.3.218:6000/meditation/dailyQuotes'));
20-
.get(Uri.parse('https://mindful-app-47s6.onrender.com:10000/meditation/dailyQuotes'));
20+
.get(Uri.parse('https://mindful-app-47s6.onrender.com/meditation/dailyQuotes'));
2121
// await client.get(Uri.parse('http://192.168.29.6:6000/songs/all')); for android real device
2222
// await client.get(Uri.parse('http;//10.0.2.2:6000/songs/all')); for avd
2323
if (response.statusCode == 200) {
@@ -38,7 +38,7 @@ class MeditationRemoteDataSourceImpl implements MeditaionRemoteDataSource {
3838
Future<MoodMessageModel> getMoodMessage(String mood) async {
3939
final response = await client
4040
// .get(Uri.parse('http://10.0.3.218:6000/meditation/myMood/$mood'));
41-
.get(Uri.parse('https://mindful-app-47s6.onrender.com:10000/meditation/myMood/$mood'));
41+
.get(Uri.parse('https://mindful-app-47s6.onrender.com/meditation/myMood/$mood'));
4242
// await client.get(Uri.parse('http://192.168.29.6:6000/songs/all')); for android real device
4343
// await client.get(Uri.parse('http;//10.0.2.2:6000/songs/all')); for avd
4444
if (response.statusCode == 200) {

lib/features/music/data/sources/song_datasource.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class SongRemoteDataSourceImpl implements SongRemoteDataSource {
1818
Future<List<Song>> getAllSongs() async {
1919
final response =
2020
// await client.get(Uri.parse('http://10.0.3.218:6000/songs/all'));
21-
await client.get(Uri.parse('https://mindful-app-47s6.onrender.com:10000/songs/all'));
21+
await client.get(Uri.parse('https://mindful-app-47s6.onrender.com/songs/all'));
2222
// await client.get(Uri.parse('http://192.168.29.6:6000/songs/all')); for android real device
2323
// await client.get(Uri.parse('http;//10.0.2.2:6000/songs/all')); for avd
2424
if (response.statusCode == 200) {

0 commit comments

Comments
 (0)