mirror of
https://github.com/veops/cmdb.git
synced 2025-08-06 22:09:52 +08:00
Merge branch 'master' of https://github.com/pycook/cmdb
This commit is contained in:
2
Pipfile
2
Pipfile
@@ -19,7 +19,7 @@ redis = "==3.2.1"
|
|||||||
Flask-Migrate = "==2.5.2"
|
Flask-Migrate = "==2.5.2"
|
||||||
# Deployment
|
# Deployment
|
||||||
gevent = "==1.4.0"
|
gevent = "==1.4.0"
|
||||||
gunicorn = ">=19.1.1"
|
gunicorn = "==19.5.0"
|
||||||
supervisor = "==4.0.3"
|
supervisor = "==4.0.3"
|
||||||
# Auth
|
# Auth
|
||||||
Flask-Login = "==0.4.1"
|
Flask-Login = "==0.4.1"
|
||||||
|
@@ -56,9 +56,11 @@ cp api/settings.py.example api/settings.py
|
|||||||
- 浏览器打开: [http://127.0.0.1:8000](http://127.0.0.1:8000)
|
- 浏览器打开: [http://127.0.0.1:8000](http://127.0.0.1:8000)
|
||||||
- 如果是非本机访问, 要修改**ui/.env**里**VUE_APP_API_BASE_URL**里的IP地址为后端服务的ip地址
|
- 如果是非本机访问, 要修改**ui/.env**里**VUE_APP_API_BASE_URL**里的IP地址为后端服务的ip地址
|
||||||
|
|
||||||
docker运行
|
docker 一键构建和运行
|
||||||
----
|
----
|
||||||
进入主目录
|
- 进入主目录(首次镜像的构建需要**10分钟**左右,视网络情况而定)
|
||||||
```
|
```
|
||||||
docker-compose up -d
|
docker-compose up -d
|
||||||
```
|
```
|
||||||
|
|
||||||
|
- 浏览器打开: [http://localhost:8000](http://localhost:8000)
|
||||||
|
@@ -15,4 +15,3 @@ RUN yum install -y epel-release && yum clean all\
|
|||||||
&& pip install --no-cache-dir -r docs/requirements.txt
|
&& pip install --no-cache-dir -r docs/requirements.txt
|
||||||
|
|
||||||
CMD ["bash", "-c", "cp api/settings.py.example api/settings.py && sed -i 's#{user}:{password}@127.0.0.1:3306/{db}#:@127.0.0.1:3306/cmdb#g' api/settings.py && flask run"]
|
CMD ["bash", "-c", "cp api/settings.py.example api/settings.py && sed -i 's#{user}:{password}@127.0.0.1:3306/{db}#:@127.0.0.1:3306/cmdb#g' api/settings.py && flask run"]
|
||||||
|
|
||||||
|
@@ -1,5 +1,8 @@
|
|||||||
# -*- coding:utf-8 -*-
|
# -*- coding:utf-8 -*-
|
||||||
|
|
||||||
|
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import datetime
|
import datetime
|
||||||
|
|
||||||
import six
|
import six
|
||||||
@@ -37,8 +40,8 @@ type_map = {
|
|||||||
'deserialize': {
|
'deserialize': {
|
||||||
Attribute.INT: string2int,
|
Attribute.INT: string2int,
|
||||||
Attribute.FLOAT: float,
|
Attribute.FLOAT: float,
|
||||||
Attribute.TEXT: escape,
|
Attribute.TEXT: lambda x: escape(x).encode('utf-8').decode('utf-8'),
|
||||||
Attribute.TIME: escape,
|
Attribute.TIME: lambda x: escape(x).encode('utf-8').decode('utf-8'),
|
||||||
Attribute.DATETIME: str2datetime,
|
Attribute.DATETIME: str2datetime,
|
||||||
Attribute.DATE: str2datetime,
|
Attribute.DATE: str2datetime,
|
||||||
},
|
},
|
||||||
|
@@ -1,6 +1,8 @@
|
|||||||
# -*- coding:utf-8 -*-
|
# -*- coding:utf-8 -*-
|
||||||
|
|
||||||
|
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import markupsafe
|
import markupsafe
|
||||||
from flask import abort
|
from flask import abort
|
||||||
|
|
||||||
|
@@ -1,24 +1,6 @@
|
|||||||
version: '3.4'
|
version: '3.4'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
cmdb-ui:
|
|
||||||
build:
|
|
||||||
context: ./ui
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
image: cmdb-ui:0.1
|
|
||||||
container_name: cmdb-ui
|
|
||||||
command: ["sh", "-c", "sed -i 's#http://127.0.0.1:5000##g' .env && yarn run serve"]
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD", "curl", "-f", "http://localhost:5000"]
|
|
||||||
interval: 5s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 100
|
|
||||||
start_period: 10s
|
|
||||||
depends_on:
|
|
||||||
- cmdb-api
|
|
||||||
networks:
|
|
||||||
- new
|
|
||||||
|
|
||||||
cmdb-api:
|
cmdb-api:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
@@ -67,32 +49,31 @@ services:
|
|||||||
aliases:
|
aliases:
|
||||||
- redis
|
- redis
|
||||||
|
|
||||||
cmdb-proxy:
|
cmdb-ui:
|
||||||
image: nginx:latest
|
build:
|
||||||
container_name: cmdb-proxy
|
context: ./ui
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
image: cmdb-ui:0.1
|
||||||
|
container_name: cmdb-ui
|
||||||
depends_on:
|
depends_on:
|
||||||
- cmdb-api
|
- cmdb-api
|
||||||
- cmdb-ui
|
|
||||||
volumes:
|
|
||||||
- "$PWD/conf.d:/etc/nginx/conf.d"
|
|
||||||
environment:
|
environment:
|
||||||
CMDB_API_HOST: cmdb-api:5000
|
CMDB_API_HOST: cmdb-api:5000
|
||||||
CMDB_UI_HOST: cmdb-ui:8000
|
|
||||||
NGINX_PORT: 80
|
NGINX_PORT: 80
|
||||||
volumes:
|
volumes:
|
||||||
- ./docs/nginx.cmdb.conf.example:/etc/nginx/conf.d/nginx.cmdb.conf.example
|
- ./docs/nginx.cmdb.conf.example:/etc/nginx/conf.d/nginx.cmdb.conf.example
|
||||||
command:
|
command:
|
||||||
- /bin/bash
|
- /bin/bash
|
||||||
- -c
|
- -c
|
||||||
- |
|
- |
|
||||||
envsubst '$$CMDB_API_HOST $$CMDB_UI_HOST $$NGINX_PORT' < /etc/nginx/conf.d/nginx.cmdb.conf.example > /etc/nginx/conf.d/cmdb.conf
|
envsubst '$$CMDB_API_HOST $$NGINX_PORT' < /etc/nginx/conf.d/nginx.cmdb.conf.example > /etc/nginx/conf.d/cmdb.conf
|
||||||
rm -f /etc/nginx/conf.d/default.conf
|
rm -f /etc/nginx/conf.d/default.conf
|
||||||
|
curl http://cmdb-api:5000/api/v0.1/ci/flush
|
||||||
nginx -g 'daemon off;'
|
nginx -g 'daemon off;'
|
||||||
curl http://localhost/api/v0.1/ci/flush
|
|
||||||
networks:
|
networks:
|
||||||
- new
|
- new
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- "8000:80"
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
db-data:
|
db-data:
|
||||||
|
@@ -25,9 +25,12 @@ server {
|
|||||||
application/xml
|
application/xml
|
||||||
application/rss+xml
|
application/rss+xml
|
||||||
image/svg+xml;
|
image/svg+xml;
|
||||||
|
|
||||||
|
root /etc/nginx/html;
|
||||||
location / {
|
location / {
|
||||||
proxy_pass http://${CMDB_UI_HOST};
|
root /etc/nginx/html;
|
||||||
proxy_set_header Host $host;
|
index index.html;
|
||||||
|
try_files $uri $uri/ /index.html;
|
||||||
}
|
}
|
||||||
location /api {
|
location /api {
|
||||||
proxy_pass http://${CMDB_API_HOST};
|
proxy_pass http://${CMDB_API_HOST};
|
||||||
@@ -41,4 +44,11 @@ server {
|
|||||||
proxy_set_header Upgrade $http_upgrade;
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
proxy_set_header Connection "upgrade";
|
proxy_set_header Connection "upgrade";
|
||||||
}
|
}
|
||||||
|
location ~* \.(css|js)$ {
|
||||||
|
access_log off;
|
||||||
|
add_header Pragma public;
|
||||||
|
add_header Cache-Control "public, max-age=7776000";
|
||||||
|
#add_header Cache-Control "public,no-cache, max-age=0";
|
||||||
|
add_header X-Asset "yes";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -11,10 +11,10 @@ SQLAlchemy ==1.3.5
|
|||||||
PyMySQL ==0.9.3
|
PyMySQL ==0.9.3
|
||||||
redis ==3.2.1
|
redis ==3.2.1
|
||||||
# Migrations
|
# Migrations
|
||||||
Flask-Migrate ==2.5.2
|
Flask-Migrate == 2.5.2
|
||||||
# Deployment
|
# Deployment
|
||||||
gevent ==1.4.0
|
gevent ==1.4.0
|
||||||
gunicorn>=19.1.1
|
gunicorn == 19.5.0
|
||||||
supervisor ==4.0.3
|
supervisor ==4.0.3
|
||||||
# Auth
|
# Auth
|
||||||
Flask-Login ==0.4.1
|
Flask-Login ==0.4.1
|
||||||
|
Reference in New Issue
Block a user