Skip to content

apulis/AIArts-Frontend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

a5081ea · Oct 27, 2020
Oct 20, 2020
Sep 23, 2020
Jul 8, 2020
Sep 23, 2020
Oct 26, 2020
May 20, 2020
Sep 1, 2020
May 20, 2020
May 20, 2020
Oct 12, 2020
Sep 2, 2020
May 20, 2020
May 20, 2020
May 20, 2020
Sep 7, 2020
Oct 27, 2020
Sep 23, 2020
Jun 24, 2020
Sep 23, 2020
Sep 23, 2020
May 20, 2020
May 20, 2020
Oct 12, 2020
Sep 23, 2020
Sep 23, 2020
Jun 24, 2020
Oct 12, 2020

Repository files navigation

Apulis AIArts Frontend

Quick Start

  1. Be sure to update the lastest code

    git pull origin master

  2. Buid the docker images

    docker build -t apulistech/ai-arts-frontend .
    # Turn up the compose services 
    docker-compose up -d
    # Turn down services
    docker-compose down
    

Update the kubenates domain nginx configuration

Add the services port into nginx conf

location /AIarts {
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_buffers 16 16k;
    proxy_buffer_size 32k;
    proxy_pass http://localhost:3084/;
}