Skip to content
This repository was archived by the owner on Nov 19, 2025. It is now read-only.

Commit bbfdbc9

Browse files
committed
update
1 parent 06a2b02 commit bbfdbc9

14 files changed

Lines changed: 111 additions & 31 deletions

File tree

README.md

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -66,19 +66,11 @@ SkySync is a modern file management application built with Flutter that provides
6666

6767
## First look
6868

69-
```mermaid
70-
flowchart TD
71-
A[Start] --> B{Warunek?}
72-
B -->|Tak| C[Wykonaj akcję]
73-
B -->|Nie| D[Zakończ]
74-
```
75-
7669
| Demo images | Demo images |
7770
|-----------------------|-----------------------|
78-
| ![img1](rdAssets/2.png) | ![img2](rdAssets/3.png) |
79-
| ![img3](rdAssets/4.png) | ![img4](rdAssets/5.png) |
80-
| ![img5](rdAssets/6.png) | ![img6](rdAssets/7.png) |
81-
71+
| ![img1](assets/readme/2.png) | ![img2](assets/readme/3.png) |
72+
| ![img3](assets/readme/4.png) | ![img4](assets/readme/5.png) |
73+
| ![img5](assets/readme/6.png) | ![img6](assets/readme/7.png) |
8274

8375
## Getting Started
8476

@@ -107,7 +99,8 @@ flowchart TD
10799
3. **Configure environment**
108100
- Create a `.env` file in the root directory
109101
- Add your API configuration:
110-
```
102+
103+
```bash
111104
API_KEY=your_api_key_here
112105
BASE_URL=http://your-backend-url:8000
113106
```
@@ -118,10 +111,16 @@ flowchart TD
118111
flutter run
119112
```
120113

114+
5. **Build release version**
115+
116+
```bash
117+
flutter build windows --release
118+
flutter build android --release
119+
#etc.
121120

122121
## Project Structure
123122

124-
```
123+
```bash
125124
lib/
126125
├── main.dart # Application entry point
127126
├── pages/ # Application pages
@@ -243,4 +242,4 @@ This project is licensed under the MIT License - see the LICENSE file for detail
243242
- [ ] File versioning
244243
- [ ] Real-time collaboration
245244
- [ ] Cloud storage integration
246-
- [ ] Advanced security features (2FA, encryption)
245+
- [ ] Advanced security features (2FA, encryption)

SERVER.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ RATE_LIMIT_WINDOW=60
211211

212212
### Note
213213

214-
- **In password field do not put your gmail password. It must be app password more information [here](https://www.hostpapa.com/knowledgebase/how-to-create-and-use-google-app-passwords/)**
214+
- **In password field do not put your gmail password. It must be app password more information [check this link](https://www.hostpapa.com/knowledgebase/how-to-create-and-use-google-app-passwords/)**
215215
- **Highly recommend using [ngrok](https://ngrok.com/) for tunneling**
216216

217217
```bash
@@ -281,7 +281,7 @@ SECURITY_CONFIG = {
281281

282282
Security logs are stored in `security.log` with the following format:
283283

284-
```
284+
```bash
285285
2024-01-15 10:30:00 - INFO - [192.168.1.100] [testuser] SECURITY_EVENT: {"event_type": "failed_login", "details": "Invalid password", "severity": "medium"}
286286
```
287287

android/app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
android {
9-
namespace = "com.example.fileserver"
9+
namespace = "com.Bartekbk.Skysync"
1010
compileSdk = flutter.compileSdkVersion
1111
ndkVersion = "27.0.12077973"
1212

@@ -21,7 +21,7 @@ android {
2121

2222
defaultConfig {
2323
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
24-
applicationId = "com.example.fileserver"
24+
applicationId = "com.Bartekbk.Skysync"
2525
// You can update the following values to match your application needs.
2626
// For more information, see: https://flutter.dev/to/review-gradle-config.
2727
minSdk = flutter.minSdkVersion

android/app/src/main/kotlin/com/example/fileserver/MainActivity.kt renamed to android/app/src/main/kotlin/com/Bartekbk/Skysync/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.fileserver
1+
package com.Bartekbk.Skysync
22

33
import io.flutter.embedding.android.FlutterActivity
44

assets/Logo.png

386 KB
Loading
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)