Skip to content

Commit e4fd106

Browse files
author
subhra74
committed
rename
1 parent 2f6b697 commit e4fd106

File tree

7 files changed

+14
-11
lines changed

7 files changed

+14
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Installation
2020
- Download the binary archive from https://github.com/subhra74/easy-cloud-shell/releases
2121
- Extract the archive to a suitable location
2222
- Make file executable with chmod
23-
- Run ./start-ews.sh (For security reasons do not use root user)
23+
- Run ./start-cloud-shell.sh (For security reasons do not use root user)
2424
- Open recent version on Chrome or Firefox and visit https://[your ip address]:8055/ or, on local machine use https://localhost:8055/
2525
- Ignore any certificate error, appeared due to newly created self signed certificate by easy cloud shell.
2626
- Initial credential:

app/HOW-TO-INSTALL.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
2. Download the binary archive from https://github.com/subhra74/easy-cloud-shell/releases
33
3. Extract the archive to a suitable location and switch to that directory
44
4. Make file executable with chmod if required
5-
5. Run ./start-ews.sh (For security reasons do not use root user)
5+
5. Run ./start-cloud-shell.sh (For security reasons do not use root user)
66
6. Open recent version on Chrome or Firefox and visit https://[your ip address]:8055/ or, on local machine use https://localhost:8055/
77
7. Ignore any certificate error, appeared due to newly created self signed certificate by easy cloud shell.
88
8. Initial credential: admin/admin

app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
<artifactId>spring-boot-maven-plugin</artifactId>
147147
</plugin>
148148
</plugins>
149-
<finalName>ews</finalName>
149+
<finalName>cloud-shell</finalName>
150150
</build>
151151

152152
</project>

app/start-cloud-shell.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#/bin/sh
2+
3+
mkdir ~/.easy-cloud-shell
4+
5+
nohup java -jar cloud-shell.jar >$HOME/.easy-cloud-shell/log.txt 2>&1&
6+
7+

app/start-ews.sh

Lines changed: 0 additions & 7 deletions
This file was deleted.

ui/src/app/home/editor/editor.component.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,9 @@ export class EditorComponent implements OnInit,AfterViewInit {
153153
this.service.setText(this.service.selectedEditorTab).subscribe((resp: any) => {
154154
console.log("save done");
155155
this.saving = false;
156+
},err=>{
157+
this.saving = false;
158+
alert("Failed to save file");
156159
});
157160
}
158161

ui/src/app/home/settings/settings.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</div>
88
<div class="form-check" style="padding-bottom: 10px;">
99
<input type="checkbox" class="form-check-input" id="exampleCheck1" #chk>
10-
<label class="form-check-label" for="exampleCheck1">Chenge password</label>
10+
<label class="form-check-label" for="exampleCheck1">Change password</label>
1111
</div>
1212
<div class="form-group" *ngIf="chk.checked">
1313
<label for="password">New Password</label>

0 commit comments

Comments
 (0)