多维表格
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 862fe8815f fix(nocodb): fail to update records with multiple primary keys 2 years ago
..
docker feat: server.enable('trust proxy'); 2 years ago
litestream
src fix(nocodb): fail to update records with multiple primary keys 2 years ago
tests fix(test): Added sqlite sakila seeding sqlite file which will preserve the last updated time and removed the old one 2 years ago
.dockerignore
.eslintrc.json
.gcloudignore
.gitignore fix(test): Made sqlite project external 2 years ago
.npmignore
.prettierignore
.prettierrc.js GUI code refactoring (#2051) 3 years ago
Dockerfile chore: upgrade alpine version 2 years ago
Dockerfile-ORACLE
LICENSE
README.md chore: test commit 3 years ago
docker-compose.yml
package-lock.json chore: change to local sdk path 2 years ago
package.json fix(test): Fixed quick pg config 2 years ago
tsconfig.json fix find one to return empty object 3 years ago
tsconfig.module.json
webpack.config.js
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 npm registry, for local development, you should run nc-gui separately.

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

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

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