Skip to content

Commit

Permalink
feat: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
chenos committed Jan 13, 2024
1 parent 8ab6950 commit 88dd3dd
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 8 deletions.
33 changes: 33 additions & 0 deletions docker/app-mariadb/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
version: "3"
networks:
nocobase:
driver: bridge
services:
app:
image: nocobase/nocobase:latest
networks:
- nocobase
depends_on:
- mariadb
environment:
- APP_KEY=your-secret-key # Replace it with your own app key
- DB_DIALECT=mariadb
- DB_HOST=mariadb
- DB_DATABASE=nocobase
- DB_USER=nocobase
- DB_PASSWORD=nocobase
- DB_TIMEZONE=+08:00
volumes:
- ./storage:/app/nocobase/storage
ports:
- "13000:80"
mariadb:
image: mariadb:latest
environment:
MYSQL_DATABASE: nocobase
MYSQL_USER: nocobase
MYSQL_PASSWORD: nocobase
MYSQL_ROOT_PASSWORD: nocobase
restart: always
networks:
- nocobase
7 changes: 4 additions & 3 deletions docker/app-mysql/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,25 @@ networks:
driver: bridge
services:
app:
image: nocobase/nocobase:main
image: nocobase/nocobase:latest
networks:
- nocobase
depends_on:
- mysql
environment:
- APP_KEY=your-secret-key # Replace it with your own app key
- DB_DIALECT=mysql
- DB_HOST=mysql
- DB_DATABASE=nocobase
- DB_USER=nocobase
- DB_PASSWORD=nocobase
- LOCAL_STORAGE_BASE_URL=/storage/uploads
- DB_TIMEZONE=+08:00
volumes:
- ./storage:/app/nocobase/storage
ports:
- "13000:80"
mysql:
image: mysql:8
image: mysql:latest
environment:
MYSQL_DATABASE: nocobase
MYSQL_USER: nocobase
Expand Down
4 changes: 2 additions & 2 deletions docker/app-postgres/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ networks:
driver: bridge
services:
app:
image: nocobase/nocobase:main
image: nocobase/nocobase:latest
networks:
- nocobase
environment:
- APP_KEY=your-secret-key # Replace it with your own app key
- DB_DIALECT=postgres
- DB_HOST=postgres
- DB_DATABASE=nocobase
- DB_USER=nocobase
- DB_PASSWORD=nocobase
- LOCAL_STORAGE_BASE_URL=/storage/uploads
volumes:
- ./storage:/app/nocobase/storage
ports:
Expand Down
4 changes: 2 additions & 2 deletions docker/app-sqlite/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ networks:
driver: bridge
services:
app:
image: nocobase/nocobase:main
image: nocobase/nocobase:latest
networks:
- nocobase
environment:
- LOCAL_STORAGE_BASE_URL=/storage/uploads
- APP_KEY=your-secret-key # Replace it with your own app key
volumes:
- ./storage:/app/nocobase/storage
ports:
Expand Down
2 changes: 1 addition & 1 deletion packages/core/create-nocobase-app/src/generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ class AppGenerator extends Generator {
APP_ENV: 'development',
DB_DIALECT: dbDialect,
APP_KEY: crypto.randomBytes(256).toString('base64'),
PLUGIN_PACKAGE_PREFIX: `@nocobase/plugin-,@nocobase/preset-,@${this.context.name}/plugin-`,
// PLUGIN_PACKAGE_PREFIX: `@nocobase/plugin-,@nocobase/preset-,@${this.context.name}/plugin-`,
...env,
},
};
Expand Down

0 comments on commit 88dd3dd

Please # to comment.