Browse Source

Merge pull request #362 from wingkwong/docs/noco-docs

docs: revise introduction & add installation content
pull/366/head
Pranav C 3 years ago committed by GitHub
parent
commit
2531395da6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 42
      packages/noco-docs/content/en/index.md
  2. 26
      packages/noco-docs/content/en/setup-and-usages/installation.md

42
packages/noco-docs/content/en/index.md

@ -3,7 +3,6 @@ title: 'NocoDB Documentation'
description: 'NocoDB Documentation' description: 'NocoDB Documentation'
position: 0 position: 0
category: 'Getting started' category: 'Getting started'
fullscreen: true
menuTitle: 'Introduction' menuTitle: 'Introduction'
--- ---
@ -26,14 +25,14 @@ Also NocoDB's app store allows you to build business workflows on views with com
- ⚡  Roles : Owner, Creator, Editor, Commenter, Viewer, Commenter, Custom Roles. - ⚡  Roles : Owner, Creator, Editor, Commenter, Viewer, Commenter, Custom Roles.
- ⚡  Access Control : Fine-grained access control even at database, table & column level. - ⚡  Access Control : Fine-grained access control even at database, table & column level.
### App Store for workflow automations : ### App Store for workflow automations
- ⚡  Chat : Microsoft Teams, Slack, Discord, Mattermost - ⚡  Chat : Microsoft Teams, Slack, Discord, Mattermost
- ⚡  Email : SMTP, SES, Mailchimp - ⚡  Email : SMTP, SES, Mailchimp
- ⚡  SMS : Twilio - ⚡  SMS : Twilio
- ⚡  Whatsapp - ⚡  Whatsapp
- ⚡  Any 3rd Party APIs - ⚡  Any 3rd Party APIs
### Programmatic API access via : ### Programmatic API access via
- ⚡  REST APIs (Swagger) - ⚡  REST APIs (Swagger)
- ⚡  GraphQL APIs. - ⚡  GraphQL APIs.
- ⚡  Includes JWT Authentication & Social Auth - ⚡  Includes JWT Authentication & Social Auth
@ -50,4 +49,39 @@ Also NocoDB's app store allows you to build business workflows on views with com
| Project Type | Metadata stored in | Data stored in | | Project Type | Metadata stored in | Data stored in |
|---------|-----------|--------| |---------|-----------|--------|
| Create new project | NC_DB | NC_DB | | Create new project | NC_DB | NC_DB |
| Create new project with external DB | NC_DB | External database | | Create new project with external DB | NC_DB | External database |
## Project Structures
We use ``Lerna`` to manage multi-packages. We have the following [packages](https://github.com/nocodb/nocodb/tree/master/packages).
- ``packages/nc-cli`` : A CLI to create NocoDB app.
- ``packages/nc-common``: A common library package used internally.
- ``packages/nc-gui``: NocoDB Frontend.
- ``packages/nc-lib-gui``: The build version of ``nc-gui`` which will be used in ``packages/nocodb``.
- ``packages/nc-migrator-archived``: SQL based schema migrations or evolutions.
- ``packages/nc-plugin``: Plugin template.
- ``packages/noco-blog``: NocoDB Blog which will be auto-released to [nocodb/noco-blog](https://github.com/nocodb/noco-blog).
- ``packages/noco-book``: NocoDB Handbook which will be auto-released to [nocodb/noco-book](https://github.com/nocodb/noco-book).
- ``packages/noco-docs``: NocoDB Documentation which will be auto-released to [nocodb/noco-docs](https://github.com/nocodb/noco-docs).
- ``packages/nocodb``: NocoDB Backend, hosted in [NPM](https://www.npmjs.com/package/nocodb).
## Contributions
All contributions are welcome. NocoDB projects can be found in the [NocoDB](https://github.com/nocodb) Github organization. Our core uses [The AGPL V3 license](https://github.com/nocodb/nocodb/blob/master/LICENSE) and all contributors should read the [contribution guides](https://github.com/nocodb/nocodb/tree/master/contribute) before making your first contribution.
You can also share your thoughts and discuss with our community members via [discord](https://discord.gg/5RgZmkW) or [Github Discussion](https://github.com/nocodb/nocodb/discussions). We also share our [Immediate Roadmap](https://github.com/nocodb/nocodb/projects/1) and all opinions are welcome.
## Support
If you have any issues or questions, you can reach out for help in our [discord](https://discord.gg/5RgZmkW).

26
packages/noco-docs/content/en/setup-and-usages/installation.md

@ -62,48 +62,38 @@ Simple installation - takes about three minutes!
</code-block> </code-block>
</code-group> </code-group>
<br>
<br>
## Local Setup ## Local Setup
If you want to modify the source code, there are two scenarios. You can either If you want to modify the source code,
- change backend only or
- change both frontend and backend separately
Even though the package ``nocodb/packages/nocodb`` is a backend project, you can still visit the dashboard as it includes ``nc-lib-gui``. - Start the backend locally
```bash ```bash
cd packages/nocodb cd packages/nocodb
npm install npm install
npm run watch:run npm run watch:run
# open localhost:8080/dashboard in browser
``` ```
As ``nc-lib-gui`` is hosted in npm registry, for local development on frontend part, you should run ``nc-gui`` separately. - Start the frontend locally
```bash ```bash
cd packages/nc-gui cd packages/nc-gui
npm install npm install
npm run dev npm run dev
# open localhost:3000/dashboard in browser
``` ```
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 - Open ``localhost:3000/dashboard`` in browser
```json <alert>
"nc-lib-gui": "file:../nc-lib-gui" nocodb/packages/nocodb includes nc-lib-gui which is the built version of nc-gui hosted in npm registry. <br>
``` You can visit localhost:8000/dashboard in browser after starting the backend locally if you just want to modify the backend only.
</alert>
In this case, whenever there is any changes made in frontend, you need to run ``npm run build:copy`` under ``packages/nc-gui/``.
## Production Setup ## Production Setup
NocoDB requires a database to store metadata of spreadsheets views and external databases. NocoDB requires a database to store metadata of spreadsheets views and external databases.
And connection params for this database can be specified in `NC_DB` environment variable. And connection params for this database can be specified in `NC_DB` environment variable.
### Docker ### Docker
<code-group> <code-group>

Loading…
Cancel
Save