portacode 1.3.25__py3-none-any.whl → 1.3.26__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- portacode/_version.py +2 -2
- {portacode-1.3.25.dist-info → portacode-1.3.26.dist-info}/METADATA +18 -41
- {portacode-1.3.25.dist-info → portacode-1.3.26.dist-info}/RECORD +7 -7
- {portacode-1.3.25.dist-info → portacode-1.3.26.dist-info}/WHEEL +0 -0
- {portacode-1.3.25.dist-info → portacode-1.3.26.dist-info}/entry_points.txt +0 -0
- {portacode-1.3.25.dist-info → portacode-1.3.26.dist-info}/licenses/LICENSE +0 -0
- {portacode-1.3.25.dist-info → portacode-1.3.26.dist-info}/top_level.txt +0 -0
portacode/_version.py
CHANGED
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '1.3.
|
|
32
|
-
__version_tuple__ = version_tuple = (1, 3,
|
|
31
|
+
__version__ = version = '1.3.26'
|
|
32
|
+
__version_tuple__ = version_tuple = (1, 3, 26)
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: portacode
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.26
|
|
4
4
|
Summary: Portacode CLI client and SDK
|
|
5
5
|
Home-page: https://github.com/portacode/portacode
|
|
6
6
|
Author: Meena Erian
|
|
@@ -43,7 +43,7 @@ Dynamic: summary
|
|
|
43
43
|
|
|
44
44
|
**An AI-first, mobile-first IDE and admin tool, made with love and passion by software engineers, for software engineers.**
|
|
45
45
|
|
|
46
|
-
Portacode transforms any
|
|
46
|
+
Portacode transforms any device with python into a remotely accessible development environment. Access your home lab, server or even embedded system chip from your phone, code on your desktop or your smartphone from anywhere, or help a colleague debug their server - all through a beautiful web interface designed for the modern developer.
|
|
47
47
|
|
|
48
48
|
## ✨ Why Portacode?
|
|
49
49
|
|
|
@@ -86,40 +86,9 @@ Once connected, you can:
|
|
|
86
86
|
|
|
87
87
|
## 💡 Use Cases
|
|
88
88
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
portacode connect
|
|
93
|
-
|
|
94
|
-
# Now code, build, and debug from anywhere - even your phone
|
|
95
|
-
```
|
|
96
|
-
|
|
97
|
-
### Server Administration
|
|
98
|
-
```bash
|
|
99
|
-
# For a persistent connection, install system-wide first
|
|
100
|
-
sudo pip install portacode --system
|
|
101
|
-
|
|
102
|
-
# Then install as a service
|
|
103
|
-
sudo portacode service install
|
|
104
|
-
|
|
105
|
-
# Your server is now accessible 24/7 from the web dashboard
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
### Mobile Development
|
|
109
|
-
```bash
|
|
110
|
-
# Connect your desktop/laptop
|
|
111
|
-
portacode connect
|
|
112
|
-
|
|
113
|
-
# Code on-the-go from your mobile device with a full IDE experience
|
|
114
|
-
```
|
|
115
|
-
|
|
116
|
-
### Team Collaboration
|
|
117
|
-
```bash
|
|
118
|
-
# Connect shared development environments
|
|
119
|
-
portacode connect
|
|
120
|
-
|
|
121
|
-
# Enable team members to access shared resources securely
|
|
122
|
-
```
|
|
89
|
+
- **Remote Development**: Code, build, and debug from anywhere - even your phone
|
|
90
|
+
- **Server Administration**: 24/7 server access with persistent service installation
|
|
91
|
+
- **Mobile Development**: Full IDE experience on mobile devices
|
|
123
92
|
|
|
124
93
|
## 🔧 Essential Commands
|
|
125
94
|
|
|
@@ -140,19 +109,21 @@ portacode --help
|
|
|
140
109
|
|
|
141
110
|
### Service Management
|
|
142
111
|
```bash
|
|
143
|
-
#
|
|
112
|
+
# First, authenticate your device
|
|
113
|
+
portacode connect
|
|
114
|
+
|
|
115
|
+
# For system services, install package system-wide
|
|
144
116
|
sudo pip install portacode --system
|
|
145
117
|
|
|
146
118
|
# Install persistent service (auto-start on boot)
|
|
147
119
|
sudo portacode service install
|
|
148
120
|
|
|
149
|
-
# Check service status
|
|
121
|
+
# Check service status (use -v for verbose debugging)
|
|
150
122
|
sudo portacode service status
|
|
123
|
+
sudo portacode service status -v
|
|
151
124
|
|
|
152
|
-
# Stop the service
|
|
125
|
+
# Stop/remove the service
|
|
153
126
|
sudo portacode service stop
|
|
154
|
-
|
|
155
|
-
# Remove the service
|
|
156
127
|
sudo portacode service uninstall
|
|
157
128
|
```
|
|
158
129
|
|
|
@@ -194,11 +165,17 @@ sudo portacode service status --verbose
|
|
|
194
165
|
|
|
195
166
|
### Service Installation Issues
|
|
196
167
|
```bash
|
|
168
|
+
# First authenticate your device
|
|
169
|
+
portacode connect
|
|
170
|
+
|
|
197
171
|
# If service commands fail, ensure system-wide installation
|
|
198
172
|
sudo pip install portacode --system
|
|
199
173
|
|
|
200
174
|
# Then try service installation again
|
|
201
175
|
sudo portacode service install
|
|
176
|
+
|
|
177
|
+
# Use verbose status to debug connection issues
|
|
178
|
+
sudo portacode service status -v
|
|
202
179
|
```
|
|
203
180
|
|
|
204
181
|
### Clipboard Issues (Linux)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
portacode/README.md,sha256=4dKtpvR8LNgZPVz37GmkQCMWIr_u25Ao63iW56s7Ke4,775
|
|
2
2
|
portacode/__init__.py,sha256=oB3sV1wXr-um-RXio73UG8E5Xx6cF2ZVJveqjNmC-vQ,1086
|
|
3
3
|
portacode/__main__.py,sha256=jmHTGC1hzmo9iKJLv-SSYe9BSIbPPZ2IOpecI03PlTs,296
|
|
4
|
-
portacode/_version.py,sha256=
|
|
4
|
+
portacode/_version.py,sha256=SuapxdEzR3ZIC18_-TLYJjA4kj4DA2PG_8e-FJuLuQA,706
|
|
5
5
|
portacode/cli.py,sha256=eDqcZMVFHKzqqWxedhhx8ylu5WMVCLqeJQkbPR7RcJE,16333
|
|
6
6
|
portacode/data.py,sha256=5-s291bv8J354myaHm1Y7CQZTZyRzMU3TGe5U4hb-FA,1591
|
|
7
7
|
portacode/keypair.py,sha256=PAcOYqlVLOoZTPYi6LvLjfsY6BkrWbLOhSZLb8r5sHs,3635
|
|
@@ -33,7 +33,7 @@ portacode/connection/handlers/project_state/handlers.py,sha256=nkednSbCC-0n3Ztze
|
|
|
33
33
|
portacode/connection/handlers/project_state/manager.py,sha256=03mN0H9TqVa_ohD5U5-5ZywDGj0s8-y1IxGdb07dZn8,57636
|
|
34
34
|
portacode/connection/handlers/project_state/models.py,sha256=EZTKvxHKs8QlQUbzI0u2IqfzfRRXZixUIDBwTGCJATI,4313
|
|
35
35
|
portacode/connection/handlers/project_state/utils.py,sha256=LsbQr9TH9Bz30FqikmtTxco4PlB_n0kUIuPKQ6Fb_mo,1665
|
|
36
|
-
portacode-1.3.
|
|
36
|
+
portacode-1.3.26.dist-info/licenses/LICENSE,sha256=2FGbCnUDgRYuQTkB1O1dUUpu5CVAjK1j4_p6ack9Z54,1066
|
|
37
37
|
test_modules/README.md,sha256=Do_agkm9WhSzueXjRAkV_xEj6Emy5zB3N3VKY5Roce8,9274
|
|
38
38
|
test_modules/__init__.py,sha256=1LcbHodIHsB0g-g4NGjSn6AMuCoGbymvXPYLOb6Z7F0,53
|
|
39
39
|
test_modules/test_device_online.py,sha256=yiSyVaMwKAugqIX_ZIxmLXiOlmA_8IRXiUp12YmpB98,1653
|
|
@@ -58,8 +58,8 @@ testing_framework/core/playwright_manager.py,sha256=9kGXJtRpRNEhaSlV7XVXvx4UQSHS
|
|
|
58
58
|
testing_framework/core/runner.py,sha256=j2QwNJmAxVBmJvcbVS7DgPJUKPNzqfLmt_4NNdaKmZU,19297
|
|
59
59
|
testing_framework/core/shared_cli_manager.py,sha256=BESSNtyQb7BOlaOvZmm04T8Uezjms4KCBs2MzTxvzYQ,8790
|
|
60
60
|
testing_framework/core/test_discovery.py,sha256=2FZ9fJ8Dp5dloA-fkgXoJ_gCMC_nYPBnA3Hs2xlagzM,4928
|
|
61
|
-
portacode-1.3.
|
|
62
|
-
portacode-1.3.
|
|
63
|
-
portacode-1.3.
|
|
64
|
-
portacode-1.3.
|
|
65
|
-
portacode-1.3.
|
|
61
|
+
portacode-1.3.26.dist-info/METADATA,sha256=-cJuyxEf9rr4AcyR-NcnZj-48wrOo2MVlFKrkF2vO6E,6960
|
|
62
|
+
portacode-1.3.26.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
63
|
+
portacode-1.3.26.dist-info/entry_points.txt,sha256=lLUUL-BM6_wwe44Xv0__5NQ1BnAz6jWjSMFvZdWW3zU,48
|
|
64
|
+
portacode-1.3.26.dist-info/top_level.txt,sha256=TGhTYUxfW8SyVZc_zGgzjzc24gGT7nSw8Qf73liVRKM,41
|
|
65
|
+
portacode-1.3.26.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|