Няма описание

Bachir Soussi Chiadmi 5401286ee5 app misc преди 4 години
Docker 9ef4727009 it's working преди 4 години
app @ a691b1656b 5401286ee5 app misc преди 4 години
log edff8f413c starting point of docker vue app (not working: npm wont install) преди 4 години
static edff8f413c starting point of docker vue app (not working: npm wont install) преди 4 години
.env edff8f413c starting point of docker vue app (not working: npm wont install) преди 4 години
.gitmodules 4ea77b5662 submodule преди 4 години
LICENSE 83b110bc91 Initial commit преди 4 години
Makefile 9ef4727009 it's working преди 4 години
README.md d504d2ced2 readme преди 4 години
docker-compose.yml 9ef4727009 it's working преди 4 години

README.md

docker-vuejs-starter

Install docker (only once)

sudo pacman -S docker docker-compose docker-machine

Clone this repos

this will clone this repos (main docker environement) and necessary other source code (synopsx, webapp, xml-tei sources, vuejs client)

git clone --recursive https://figureslibres.io/gogs/bachir/docker-vuejs-starter.git

Docker

start docker engine

sudo systemctl start docker

build

only before the first run (may take some time)

make build

run

then each time you want to launch the app

make upd

Client

open http://localhost:8988 in your browser

Vhost or Cross Origins Policy

Cross origin poilicy will block the api requests from client You'll need to install vhost domain for api and client, like dev.gdp.net and dev.api.gdp.net Or in firefox install this addon to allow cors addons.mozilla.org/en-US/firefox/addon/cors-everywhere/

Logs

to follow the webpack compilation process, run

make logs

Update

update the code

git pull origin master
git pull --recurse-submodules

restart the containers

docker-compose restart app