Compare commits

...

32 Commits

Author SHA1 Message Date
wpetit 6396c95c1c Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-10-13 14:59:47 +02:00
wpetit 882d8bfa53 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-10-13 14:27:59 +02:00
wpetit 81b2a38d27 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-10-13 13:49:05 +02:00
wpetit 213aa63033 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-10-13 13:21:47 +02:00
wpetit eefaa6e6b9 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-10-13 12:09:23 +02:00
wpetit 655b4a6e11 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-10-13 11:38:05 +02:00
wpetit 286603e9aa Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-10-13 09:38:32 +02:00
wpetit d177e2dc3f Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-10-12 21:56:48 +02:00
wpetit c1d7e0daab Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-10-12 21:15:30 +02:00
wpetit 42f7ba3473 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-10-12 15:59:57 +02:00
wpetit 0db3539627 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-10-12 14:36:11 +02:00
wpetit 057a5c1fd0 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-10-12 13:30:02 +02:00
wpetit e32dd866a5 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-10-12 10:07:04 +02:00
wpetit 3a102bde60 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-10-05 17:25:28 +02:00
wpetit 1a0456ee84 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-10-05 16:04:30 +02:00
wpetit b6b5512471 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-10-05 14:19:43 +02:00
wpetit d02ae87a55 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-10-02 16:39:56 +02:00
wpetit aed0048d95 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-09-10 19:28:31 +02:00
wpetit 98334bafa0 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-09-10 11:21:04 +02:00
wpetit 8681776283 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-09-08 10:18:51 +02:00
wpetit c026b33954 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-08-31 16:13:33 +02:00
Teddy Cornaut ac7fec9e01 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-08-31 15:51:54 +02:00
wpetit bbc8f65a47 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-08-26 14:54:34 +02:00
wpetit 9749ede28a Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-07-23 08:58:04 +02:00
wpetit bd133fa9d9 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-07-23 08:29:17 +02:00
wpetit ab90365c9c Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-07-17 09:40:03 +02:00
wpetit ec6de8a217 Création du lien symbolique vers la configuration du client 2020-07-17 09:24:03 +02:00
wpetit 17cd58d68f Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-07-16 22:51:53 +02:00
wpetit 99fb4ac6d9 Correction recette packaging 2020-07-16 22:50:55 +02:00
wpetit 2ceba1f219 Merge branch 'develop' into dist/ubuntu/bionic/develop 2020-07-16 22:35:27 +02:00
wpetit 7122677351 Mise à jour règles packaging Debian 2020-07-16 22:33:51 +02:00
wpetit 1d526a37d0 Empaquetage Debian basique 2020-06-17 18:58:27 +02:00
8 changed files with 100 additions and 0 deletions

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
9

14
debian/control vendored Normal file
View File

@ -0,0 +1,14 @@
Source: daddy
Section: unknown
Priority: optional
Maintainer: Cadoles <contact@cadoles.com>
Build-Depends: debhelper (>= 8.0.0), wget, ca-certificates, tar
Standards-Version: 3.9.4
Homepage: http://forge.cadoles.com/Cadoles/daddy
Vcs-Git: http://forge.cadoles.com/Cadoles/daddy.git
Vcs-Browser: http://forge.cadoles.com/Cadoles/daddy
Package: daddy
Architecture: amd64
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Daddy app

1
debian/daddy.links vendored Normal file
View File

@ -0,0 +1 @@
/etc/daddy/client-config.js /usr/share/daddy/public/config.js

11
debian/daddy.service vendored Normal file
View File

@ -0,0 +1,11 @@
[Unit]
Description=Daddy app
After=network-online.target
[Service]
Type=simple
ExecStart=/usr/bin/daddy -workdir /usr/share/daddy -config /etc/daddy/config.yml
Restart=on-failure
[Install]
WantedBy=multi-user.target

56
debian/rules vendored Normal file
View File

@ -0,0 +1,56 @@
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1
GO_VERSION := 1.13.5
OS := linux
ARCH := amd64
GOPATH=$(HOME)/go
ifeq (, $(shell which go 2>/dev/null))
override_dh_auto_build: install-go
override_dh_auto_clean: install-go
endif
ifeq (, $(shell which node 2>/dev/null))
override_dh_auto_build: install-nodejs
endif
%:
dh $@ --with systemd
override_dh_auto_build: $(GOPATH)
GOPATH=$(GOPATH) PATH="$(PATH):/usr/local/go/bin:$(GOPATH)/bin" make deps
GOPATH=$(GOPATH) PATH="$(PATH):/usr/local/go/bin:$(GOPATH)/bin" ARCH_TARGETS=$(ARCH) make release
$(GOPATH):
mkdir -p $(GOPATH)
install-go:
wget -nc https://dl.google.com/go/go$(GO_VERSION).$(OS)-$(ARCH).tar.gz
tar -C /usr/local -xzf go$(GO_VERSION).$(OS)-$(ARCH).tar.gz
install-nodejs:
wget -O- https://deb.nodesource.com/setup_12.x | bash -
apt-get install -y nodejs
override_dh_auto_install:
mkdir -p debian/daddy/usr/share/daddy
mkdir -p debian/daddy/etc/daddy
mkdir -p debian/daddy/usr/bin
cp -r release/server-$(OS)-$(ARCH)/* debian/daddy/usr/share/daddy/
mv debian/daddy/usr/share/daddy/bin/server debian/daddy/usr/bin/daddy
mv debian/daddy/usr/share/daddy/server.conf debian/daddy/etc/daddy/config.yml
mv debian/daddy/usr/share/daddy/public/config.js debian/daddy/etc/daddy/client-config.js
install -d debian/daddy
override_dh_strip:
override_dh_auto_test:

1
debian/source/format vendored Normal file
View File

@ -0,0 +1 @@
3.0 (native)

View File

@ -0,0 +1,15 @@
server {
listen 80 default_server;
server_name daddy.local;
root /usr/share/daddy/client/public;
index index.html;
location / {
try_files $uri /index.html =404;
}
location /api/v1/graphql {
proxy_pass http://127.0.0.1:8080/api/v1/graphql;
}
}

View File

@ -0,0 +1 @@
GO_ENV=prod