Compare commits
34 Commits
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 |
25
.drone.yml
Normal file
25
.drone.yml
Normal 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/*
|
@ -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
|
||||
|
@ -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": {
|
||||
|
@ -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},
|
||||
|
Loading…
Reference in New Issue
Block a user