chore: remove unused files
This commit is contained in:
parent
ec4779a94d
commit
f9ec74fc6e
13
.gitpod.yml
13
.gitpod.yml
@ -1,13 +0,0 @@
|
|||||||
# This configuration file was automatically generated by Gitpod.
|
|
||||||
# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml)
|
|
||||||
# and commit this file to your remote git repository to share the goodness with others.
|
|
||||||
|
|
||||||
# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart
|
|
||||||
|
|
||||||
image: gitpod/workspace-postgres
|
|
||||||
|
|
||||||
tasks:
|
|
||||||
- init: yarn install && yarn run build
|
|
||||||
command: yarn run start
|
|
||||||
|
|
||||||
|
|
3780
CHANGELOG.md
3780
CHANGELOG.md
File diff suppressed because it is too large
Load Diff
@ -1,9 +0,0 @@
|
|||||||
cd docs/dist/zh-CN
|
|
||||||
echo "docs-cn.nocobase.com" >> CNAME
|
|
||||||
echo "" >> .nojekyll
|
|
||||||
git init
|
|
||||||
git remote add origin git@github.com:nocobase/docs-cn.nocobase.com.git
|
|
||||||
git branch -M main
|
|
||||||
git add .
|
|
||||||
git commit -m "first commit"
|
|
||||||
git push -f origin main
|
|
@ -1,9 +0,0 @@
|
|||||||
cd docs/dist/en-US
|
|
||||||
echo "docs.nocobase.com" >> CNAME
|
|
||||||
echo "" >> .nojekyll
|
|
||||||
git init
|
|
||||||
git remote add origin git@github.com:nocobase/docs.nocobase.com.git
|
|
||||||
git branch -M main
|
|
||||||
git add .
|
|
||||||
git commit -m "first commit"
|
|
||||||
git push -f origin main
|
|
@ -1,62 +0,0 @@
|
|||||||
version: "3"
|
|
||||||
networks:
|
|
||||||
nocobase:
|
|
||||||
driver: bridge
|
|
||||||
services:
|
|
||||||
verdaccio:
|
|
||||||
image: verdaccio/verdaccio
|
|
||||||
networks:
|
|
||||||
- nocobase
|
|
||||||
environment:
|
|
||||||
VERDACCIO_PORT: ${VERDACCIO_PORT}
|
|
||||||
restart: always
|
|
||||||
ports:
|
|
||||||
- "${VERDACCIO_PORT}:${VERDACCIO_PORT}"
|
|
||||||
mysql:
|
|
||||||
image: mysql:8
|
|
||||||
environment:
|
|
||||||
MYSQL_DATABASE: ${DB_DATABASE}
|
|
||||||
MYSQL_USER: ${DB_USER}
|
|
||||||
MYSQL_PASSWORD: ${DB_PASSWORD}
|
|
||||||
MYSQL_ROOT_PASSWORD: ${DB_PASSWORD}
|
|
||||||
restart: always
|
|
||||||
ports:
|
|
||||||
- "${DB_MYSQL_PORT}:3306"
|
|
||||||
networks:
|
|
||||||
- nocobase
|
|
||||||
postgres:
|
|
||||||
image: postgres:latest
|
|
||||||
restart: always
|
|
||||||
networks:
|
|
||||||
- nocobase
|
|
||||||
command: postgres -c wal_level=logical
|
|
||||||
ports:
|
|
||||||
- "${DB_POSTGRES_PORT}:5432"
|
|
||||||
volumes:
|
|
||||||
- ./storage/db/postgres/backups:/backups
|
|
||||||
environment:
|
|
||||||
POSTGRES_USER: ${DB_USER}
|
|
||||||
POSTGRES_DB: ${DB_DATABASE}
|
|
||||||
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
|
||||||
adminer:
|
|
||||||
image: nocobase/adminer
|
|
||||||
restart: always
|
|
||||||
networks:
|
|
||||||
- nocobase
|
|
||||||
ports:
|
|
||||||
- ${ADMINER_PORT}:8080
|
|
||||||
volumes:
|
|
||||||
- ./:/var/www/app
|
|
||||||
nocobase:
|
|
||||||
image: node:16-stretch-slim
|
|
||||||
networks:
|
|
||||||
- nocobase
|
|
||||||
command: [ "yarn", "start" ]
|
|
||||||
working_dir: /app
|
|
||||||
env_file: ./.env
|
|
||||||
volumes:
|
|
||||||
- ./:/app
|
|
||||||
expose:
|
|
||||||
- ${APP_PORT}
|
|
||||||
ports:
|
|
||||||
- "${APP_PORT}:${APP_PORT}"
|
|
Loading…
Reference in New Issue
Block a user