mirror of https://github.com/nocodb/nocodb
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.
mertmit
81dc97f5dc
|
2 years ago | |
---|---|---|
.. | ||
docker | 2 years ago | |
exp | 3 years ago | |
litestream | 3 years ago | |
src | 2 years ago | |
tests | 2 years ago | |
.dockerignore | 3 years ago | |
.eslintrc.json | 3 years ago | |
.gcloudignore | 3 years ago | |
.gitignore | 3 years ago | |
.npmignore | 3 years ago | |
.prettierignore | 3 years ago | |
.prettierrc.js | 3 years ago | |
Dockerfile | 3 years ago | |
Dockerfile-ORACLE | 3 years ago | |
LICENSE | 3 years ago | |
README.md | 2 years ago | |
docker-compose.yml | 3 years ago | |
license.txt | 3 years ago | |
package-lock.json | 2 years ago | |
package.json | 2 years ago | |
temp.txt | 3 years ago | |
tsconfig.json | 2 years ago | |
tsconfig.module.json | 3 years ago | |
webpack.config.js | 3 years ago | |
xc.sh | 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/
.