多维表格
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.
 
 
 
 
 
 
navi 6a73eaa680
Merge pull request #1672 from nocodb/fix/error-handling-msgs
3 years ago
..
docker wip: towards v1 3 years ago
exp wip: towards v1 3 years ago
litestream feat: add litestream support 3 years ago
src Merge pull request #1672 from nocodb/fix/error-handling-msgs 3 years ago
tests fix: graphql nested list bug 3 years ago
.dockerignore
.eslintrc.json wip: towards v1 3 years ago
.gcloudignore
.gitignore
.npmignore
.prettierignore refactor: Linting 3 years ago
.prettierrc.js style(nocodb): applied prettier styling 3 years ago
Dockerfile Add dumb-init: catch signals 3 years ago
Dockerfile-ORACLE
LICENSE
README.md
docker-compose.yml refactor: update docker-compose file version 3 years ago
license.txt
package-lock.json Merge pull request #1631 from nocodb/dependabot/npm_and_yarn/packages/nocodb/moment-2.29.2 3 years ago
package.json refactor: new api design 3 years ago
temp.txt wip: towards v1 3 years ago
tsconfig.json
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/.