Compare commits

..

34 Commits

Author SHA1 Message Date
aminecmi
1a949e6e87 Truc. 2022-07-19 21:53:09 +02:00
aminecmi
d3aa355ae3 test 2022-07-19 21:44:46 +02:00
aminecmi
3b870ff634 Truc. 2022-07-19 21:41:49 +02:00
aminecmi
eb844d9ebe Fuc 2022-07-19 21:36:14 +02:00
aminecmi
10675e08fe Fix. 2022-07-19 21:32:26 +02:00
aminecmi
12a6b4f669 get. 2022-07-19 21:30:08 +02:00
aminecmi
d745ac1c3f Node version. 2022-07-19 21:24:30 +02:00
aminecmi
7abeebea83 More trying. 2022-07-19 21:14:09 +02:00
aminecmi
d1982623ed Trying. 2022-07-19 21:12:39 +02:00
aminecmi
1b533e63aa Will this fix all the issues ?! 2022-07-19 20:02:12 +02:00
aminecmi
9fceeefd66 Build au cas ou 2022-07-19 18:28:46 +02:00
aminecmi
b58b90ce15 finger crossed 2022-07-19 18:21:38 +02:00
aminecmi
da7790bb48 push 2022-07-19 18:18:18 +02:00
aminecmi
97a4250524 service. 2022-07-19 18:16:24 +02:00
aminecmi
01f507e8b7 Soyons faus 2022-07-19 18:14:29 +02:00
aminecmi
6aa4c1f300 Pfff 2022-07-19 18:10:34 +02:00
aminecmi
cf869fb4d0 faalse. 2022-07-19 18:09:07 +02:00
aminecmi
e9eaff9554 Yarn ? 2022-07-19 18:03:37 +02:00
aminecmi
07ecbfe6b3 Drooooone. 2022-07-19 17:58:30 +02:00
aminecmi
9392b2add6 Vue cli. 2022-07-19 17:52:39 +02:00
aminecmi
0e8bf5474c This should woork. 2022-07-19 17:50:41 +02:00
aminecmi
c1a246eda7 Downgrade. 2022-07-19 17:48:32 +02:00
aminecmi
114de4468f Fucking 2022-07-19 17:41:27 +02:00
aminecmi
414561f13f WIP. 2022-07-19 17:38:48 +02:00
aminecmi
bb626b67e9 c 2022-07-19 17:36:24 +02:00
aminecmi
83355e8412 fuck 2022-07-19 17:35:19 +02:00
aminecmi
d9559c9be3 debug. 2022-07-19 17:34:45 +02:00
aminecmi
951480d901 Drone. 2022-07-19 17:30:31 +02:00
aminecmi
e074eb9be3 Dro e. 2022-07-19 17:28:45 +02:00
aminecmi
b9c7618b80 Python 2 2022-07-19 17:25:56 +02:00
aminecmi
08f09b08ed Python 2 2022-07-19 17:25:32 +02:00
aminecmi
9944907aa8 Alpine. 2022-07-19 17:20:36 +02:00
aminecmi
1c5edd2024 Python issues. 2022-07-19 17:18:57 +02:00
aminecmi
3829f44c7c Drone config. 2022-07-19 17:09:45 +02:00
6 changed files with 17 additions and 20 deletions

View File

@@ -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

View File

@@ -1,5 +1,7 @@
# An alternative front to Google Keep
[![Build Status](http://18.0.0.7:46053/api/badges/AmineL/liste-de-courses-www/status.svg?ref=refs/heads/main)](http://18.0.0.7:46053/AmineL/liste-de-courses-www)
## HOW TO USE
- Change the api url

View File

@@ -71,3 +71,7 @@ export default {
}
}
</script>
<style scoped>
</style>

View File

@@ -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);
})

View File

@@ -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>

View File

@@ -46,3 +46,7 @@ export default {
}
}
</script>
<style scoped>
</style>