Compare commits
34 Commits
59b138be5e
...
drone
Author | SHA1 | Date | |
---|---|---|---|
|
1a949e6e87 | ||
|
d3aa355ae3 | ||
|
3b870ff634 | ||
|
eb844d9ebe | ||
|
10675e08fe | ||
|
12a6b4f669 | ||
|
d745ac1c3f | ||
|
7abeebea83 | ||
|
d1982623ed | ||
|
1b533e63aa | ||
|
9fceeefd66 | ||
|
b58b90ce15 | ||
|
da7790bb48 | ||
|
97a4250524 | ||
|
01f507e8b7 | ||
|
6aa4c1f300 | ||
|
cf869fb4d0 | ||
|
e9eaff9554 | ||
|
07ecbfe6b3 | ||
|
9392b2add6 | ||
|
0e8bf5474c | ||
|
c1a246eda7 | ||
|
114de4468f | ||
|
414561f13f | ||
|
bb626b67e9 | ||
|
83355e8412 | ||
|
d9559c9be3 | ||
|
951480d901 | ||
|
e074eb9be3 | ||
|
b9c7618b80 | ||
|
08f09b08ed | ||
|
9944907aa8 | ||
|
1c5edd2024 | ||
|
3829f44c7c |
17
.drone.yml
17
.drone.yml
@@ -2,20 +2,6 @@ kind: pipeline
|
||||
type: docker
|
||||
|
||||
steps:
|
||||
- name: code-analysis
|
||||
image: sonarsource/sonar-scanner-cli
|
||||
detach: true
|
||||
failure: ignore
|
||||
commands:
|
||||
- ls -la
|
||||
- sonar-scanner -Dsonar.projectKey=LDC-WWW -Dsonar.sources=. -Dsonar.host.url=$SONAR_HOST_URL -Dsonar.login=$SONAR_LOGIN
|
||||
environment:
|
||||
SONAR_HOST_URL:
|
||||
from_secret: sonarScannerHostUrl
|
||||
SONAR_LOGIN:
|
||||
from_secret: sonarScannerLogin
|
||||
|
||||
|
||||
- name: build
|
||||
image: node:14
|
||||
commands:
|
||||
@@ -37,6 +23,3 @@ steps:
|
||||
port: 22
|
||||
target: /home/ubuntu/courses
|
||||
source: dist/*
|
||||
when:
|
||||
branch:
|
||||
- main
|
||||
|
@@ -1,5 +1,7 @@
|
||||
# An alternative front to Google Keep
|
||||
|
||||
[](http://18.0.0.7:46053/AmineL/liste-de-courses-www)
|
||||
|
||||
## HOW TO USE
|
||||
|
||||
- Change the api url
|
||||
|
@@ -71,3 +71,7 @@ export default {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
|
@@ -157,7 +157,7 @@ export default {
|
||||
body: JSON.stringify({content: this.searchQ})
|
||||
}).then(r => {
|
||||
return r.json();
|
||||
}).then(() => {
|
||||
}).then(result => {
|
||||
this.searchQ = '';
|
||||
this.fetchListAndItems(true);
|
||||
})
|
||||
|
@@ -72,8 +72,8 @@ export default {
|
||||
'Content-Type': 'application/json;charset=utf-8',
|
||||
'X-API-KEY': localStorage.getItem('KEY')
|
||||
}
|
||||
}).then(result => {
|
||||
if (result.status !== 404) {
|
||||
}).then(r => {
|
||||
if (r.status !== 404) {
|
||||
this.lists = this.lists.filter(r => r.id !== item.id);
|
||||
}
|
||||
});
|
||||
@@ -103,3 +103,7 @@ export default {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
|
@@ -46,3 +46,7 @@ export default {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
|
Reference in New Issue
Block a user