Compare commits

...

34 Commits
main ... drone

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
4 changed files with 30 additions and 1 deletions

25
.drone.yml Normal file
View File

@ -0,0 +1,25 @@
kind: pipeline
type: docker
steps:
- name: build
image: node:14
commands:
- npm install
- echo $VUE_APP_API_BASE_URL
- npm run lint
- npm run build:prod
environment:
VUE_APP_API_BASE_URL:
from_secret: baseurl
- name: scp files
image: appleboy/drone-scp
settings:
host: amine-louveau.fr
username: ubuntu
key:
from_secret: privateKey
port: 22
target: /home/ubuntu/courses
source: dist/*

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

@ -5,6 +5,7 @@
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:prod": "vue-cli-service build --mode production",
"lint": "vue-cli-service lint"
},
"dependencies": {

View File

@ -38,7 +38,8 @@
</template>
<script>
import ListCreateUpdateModal from "../../../liste-de-courses-www/src/components/ListCreateUpdateModal";
import ListCreateUpdateModal from "@/components/ListCreateUpdateModal";
export default {
name: "Lists",
components: {ListCreateUpdateModal},