Compare commits
No commits in common. "32793f2129dcfdef63a58cab7b2f06527e0ef3f2" and "66640261c3185c3a089ddac8ae609a8730b8cae2" have entirely different histories.
32793f2129
...
66640261c3
@ -8,7 +8,6 @@ Environment=PATH=$PATH:/home/reimar/.dotnet
|
||||
Environment=DEFAULT_CONNECTION="Data Source=/home/reimar/skantravels/database.sqlite3"
|
||||
ExecStartPre=/home/reimar/skantravels/efbundle
|
||||
ExecStart=/home/reimar/skantravels/API --urls=http://0.0.0.0:5001
|
||||
WorkingDirectory=/home/reimar/skantravels
|
||||
Type=simple
|
||||
|
||||
[Install]
|
||||
|
@ -3,7 +3,7 @@
|
||||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
||||
<application
|
||||
android:label="SkanTravels"
|
||||
android:label="mobile"
|
||||
android:name="${applicationName}"
|
||||
android:icon="@mipmap/ic_launcher">
|
||||
<activity
|
||||
|
Before Width: | Height: | Size: 8.9 KiB After Width: | Height: | Size: 544 B |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 442 B |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 721 B |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 1.4 KiB |
@ -1,4 +0,0 @@
|
||||
#!/bin/sh
|
||||
java -version
|
||||
flutter build apk --split-per-abi --no-shrink --dart-define-from-file environment.prod.json
|
||||
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"AUTH_SERVICE_HOST": "https://skantravels.reim.ar",
|
||||
"APP_SERVICE_HOST": "https://skantravels.reim.ar"
|
||||
}
|
@ -18,8 +18,6 @@ import 'api.dart' as api;
|
||||
import 'package:http/http.dart' as http;
|
||||
|
||||
void main() async {
|
||||
WidgetsFlutterBinding.ensureInitialized();
|
||||
|
||||
// Refresh JWT on startup
|
||||
final prefs = await SharedPreferences.getInstance();
|
||||
if (prefs.getString("token") != null && prefs.getString("refresh-token") != null) {
|
||||
|
@ -6,7 +6,6 @@ After=network.target
|
||||
Environment=RUST_BACKEND_PORT=5002
|
||||
Environment=RUST_BACKEND_DB=/home/reimar/skantravels/database-rust.sqlite3
|
||||
ExecStart=/home/reimar/skantravels/skantravels
|
||||
WorkingDirectory=/home/reimar/skantravels
|
||||
Type=simple
|
||||
|
||||
[Install]
|
||||
|