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.
23 lines
731 B
23 lines
731 B
2 years ago
|
# Nocodb
|
||
3 years ago
|
|
||
|
## Running locally
|
||
|
|
||
|
Even though this package is a backend project, you can still visit the dashboard as it includes ``nc-lib-gui``.
|
||
|
|
||
2 years ago
|
```sh
|
||
3 years ago
|
npm install
|
||
|
npm run watch:run
|
||
|
# open localhost:8080/dashboard in browser
|
||
|
```
|
||
|
|
||
2 years ago
|
As ``nc-lib-gui`` is hosted in the npm registry, for local development, you should run ``nc-gui`` separately.
|
||
3 years ago
|
|
||
2 years ago
|
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
|
||
3 years ago
|
|
||
|
```json
|
||
|
"nc-lib-gui": "file:../nc-lib-gui"
|
||
|
```
|
||
|
|
||
2 years ago
|
In this case, whenever there are any changes made in the frontend, you need to run ``npm run build:copy`` under ``packages/nc-gui/``.
|
||
2 years ago
|
|