多维表格
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Wing-Kam Wong 9e2c41e22e chore: sdk path 1 year ago
..
docker feat(nocodb): add start-local.sh 1 year ago
litestream feat: add litestream support 3 years ago
src fix(nocodb): set none list for all scopes 1 year ago
tests fix(nocodb): revise audit desc 1 year ago
.dockerignore feat(nocodb): ignore src besides src/lib/public 2 years ago
.eslintrc.json feat(nocodb): enable import/order and introduce order group 2 years ago
.gcloudignore
.gitignore fix(test): Made sqlite project external 2 years ago
.npmignore
.prettierignore
.prettierrc.js GUI code refactoring (#2051) 2 years ago
Dockerfile chore: copy static files relative to build file 2 years ago
Dockerfile-ORACLE
Dockerfile.local feat(nocodb): add Dockerfile.local 1 year ago
LICENSE
README.md chore: README.md 2 years ago
docker-compose.yml test: PG version corrections 1 year ago
package-lock.json chore: sdk path 1 year ago
package.json chore: sdk path 1 year ago
tsconfig.json refactor: move swagger.json to nocodb package 2 years ago
tsconfig.module.json
webpack.config.js chore(noco): avoid replacing __dirname when taking prod build 2 years ago
webpack.local.config.js feat(nocodb): webpack.local.config.js 1 year ago
xc.sh

README.md

Nocodb

Running locally

Even though this package is a backend project, you can still visit the dashboard as it includes nc-lib-gui.

npm install
npm run watch:run
# open localhost:8080/dashboard in browser

As nc-lib-gui is hosted in the npm registry, for local development, you should run nc-gui separately.

If you wish to combine the frontend and backend together in your local development environment, you may use packages/nc-lib-gui as a local dependency by updating the packages/nocodb/package.json to

"nc-lib-gui": "file:../nc-lib-gui"

In this case, whenever there are any changes made in the frontend, you need to run npm run build:copy under packages/nc-gui/.