From e65c066cdf041d14885ca3a29f2ae0f1329528b5 Mon Sep 17 00:00:00 2001 From: Gk0Wk Date: Sun, 31 Mar 2024 17:24:15 +0800 Subject: [PATCH] empty --- LICENCE | 11 +++++++++++ README.md | 4 ++++ docker.compose.yml | 28 ++++++++++++++++++++++++++++ 3 files changed, 43 insertions(+) create mode 100644 LICENCE create mode 100644 README.md create mode 100644 docker.compose.yml diff --git a/LICENCE b/LICENCE new file mode 100644 index 0000000..ac4dbee --- /dev/null +++ b/LICENCE @@ -0,0 +1,11 @@ +Note: This license has also been called the "Simplified BSD License" and the "FreeBSD License". See also the 3-clause BSD License. + +Copyright 2024 AgentCoord Team + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..78f53c3 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# AgentCoord + +Will be released after April 7th, 2024. + diff --git a/docker.compose.yml b/docker.compose.yml new file mode 100644 index 0000000..ef21c86 --- /dev/null +++ b/docker.compose.yml @@ -0,0 +1,28 @@ +version: '3.8' + +services: + frontend: + build: + context: ./frontend + dockerfile: Dockerfile + ports: + - "8080:8080" + networks: + - agentcoord-network + environment: + - API_BASE=http://backend:8000 + depends_on: + - backend + + backend: + build: + context: ./backend + dockerfile: Dockerfile + ports: + - "8000:8000" + networks: + - agentcoord-network + +networks: + app-network: + driver: bridge