Spaces:
Running
Running
fix: release protocol and readme for new app file
Browse files- README.md +1 -1
- docs/release_protocol.md +19 -2
README.md
CHANGED
@@ -6,7 +6,7 @@ colorTo: blue
|
|
6 |
sdk: streamlit
|
7 |
sdk_version: 1.39.0
|
8 |
python_version: "3.10"
|
9 |
-
app_file: src/
|
10 |
pinned: false
|
11 |
license: apache-2.0
|
12 |
short_description: 'SDSC Hackathon - Project 10. '
|
|
|
6 |
sdk: streamlit
|
7 |
sdk_version: 1.39.0
|
8 |
python_version: "3.10"
|
9 |
+
app_file: src/home.py
|
10 |
pinned: false
|
11 |
license: apache-2.0
|
12 |
short_description: 'SDSC Hackathon - Project 10. '
|
docs/release_protocol.md
CHANGED
@@ -7,7 +7,24 @@ We wish to enforce strict commits from the dev branch to the main branch when a
|
|
7 |
Dev to Main PR Checklist:
|
8 |
|
9 |
1. Open a PR from dev branch to main branch
|
10 |
-
2. Commit: change the
|
11 |
-
3. Commit:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
4. Ask for Review
|
13 |
5. Merge and make a new release of the code
|
|
|
7 |
Dev to Main PR Checklist:
|
8 |
|
9 |
1. Open a PR from dev branch to main branch
|
10 |
+
2. Commit: in `dataset/download` change the `dataset_id` to point to the main dataset : `Saving-Willy/main_dataset`
|
11 |
+
3. Commit: in the ReadMe, to avoid merge conflict, change the header to this :
|
12 |
+
|
13 |
+
```
|
14 |
+
---
|
15 |
+
title: Saving Willy
|
16 |
+
emoji: 🐋
|
17 |
+
colorFrom: indigo
|
18 |
+
colorTo: blue
|
19 |
+
sdk: streamlit
|
20 |
+
sdk_version: 1.39.0
|
21 |
+
python_version: "3.10"
|
22 |
+
app_file: src/main.py
|
23 |
+
pinned: false
|
24 |
+
license: apache-2.0
|
25 |
+
short_description: 'SDSC Hackathon - Project 10. '
|
26 |
+
---
|
27 |
+
```
|
28 |
+
|
29 |
4. Ask for Review
|
30 |
5. Merge and make a new release of the code
|