多维表格
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.
 
 
 
 
 
 
Dean Lofts 6b6171ff8b change smtp auth required to false 3 years ago
..
docker chore: Remove tool directory creation part 3 years ago
litestream Xmysql is now NocoDB (An Open Source Airtable alternative) 3 years ago
src change smtp auth required to false 3 years ago
tests Xmysql is now NocoDB (An Open Source Airtable alternative) 3 years ago
.dockerignore Xmysql is now NocoDB (An Open Source Airtable alternative) 3 years ago
.eslintrc.json refactor: Linting 3 years ago
.gcloudignore Xmysql is now NocoDB (An Open Source Airtable alternative) 3 years ago
.gitignore refactor: removed build file from git 3 years ago
.npmignore Xmysql is now NocoDB (An Open Source Airtable alternative) 3 years ago
.prettierignore refactor: Linting 3 years ago
Dockerfile feat: Docker tool directory 3 years ago
Dockerfile-ORACLE Xmysql is now NocoDB (An Open Source Airtable alternative) 3 years ago
LICENSE Xmysql is now NocoDB (An Open Source Airtable alternative) 3 years ago
README.md docs: update README.md 3 years ago
docker-compose.yml fix: Convert port to number in connection config 3 years ago
license.txt Xmysql is now NocoDB (An Open Source Airtable alternative) 3 years ago
package-lock.json chore: package-lock file 3 years ago
package.json chore(publish): v0.11.29 3 years ago
tsconfig.json Xmysql is now NocoDB (An Open Source Airtable alternative) 3 years ago
tsconfig.module.json Xmysql is now NocoDB (An Open Source Airtable alternative) 3 years ago
webpack.config.js refactor: Remove unnecessary dependencies, disable obfuscation 3 years ago
xc.sh refactor: removed unnecessary whitespace 3 years ago

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/.