cal/apps/docs
zomars 2aa84cd5ce Sync package.json 2022-11-04 12:15:12 -07:00
..
components Embed Snippet Generator (#2597) 2022-05-05 08:29:49 -06:00
lib Fix: Improve docs and mobile style of api docs (#2635) 2022-05-05 09:36:02 -06:00
pages Update vercel.mdx (#4545) 2022-09-17 11:26:55 +00:00
public Migrate docs to mono repo (#1814) 2022-02-11 12:33:35 -07:00
.gitignore Migrate docs to mono repo (#1814) 2022-02-11 12:33:35 -07:00
.nvmrc Migrate docs to mono repo (#1814) 2022-02-11 12:33:35 -07:00
.prettierignore Migrate docs to mono repo (#1814) 2022-02-11 12:33:35 -07:00
LICENSE Migrate docs to mono repo (#1814) 2022-02-11 12:33:35 -07:00
next-env.d.ts Eslint fixes (#1898) 2022-02-18 16:53:45 +00:00
next.config.js Fix missing tabs - Embed (#2804) 2022-05-18 09:04:50 -06:00
package.json Sync package.json 2022-11-04 12:15:12 -07:00
README.md Update README.md 2022-04-30 15:55:25 +02:00
theme.config.js There is lot of hardcoding links in application (#3130) 2022-07-01 11:19:52 -06:00
tsconfig.json Updating contributing to app store docs (#2433) 2022-04-08 15:59:51 +01:00

Cal.com Documentation

The official product, support and developer documentation, containing information and guides about using the product as well as support for self-hosted installations. This documentation site runs on Nextra, so you may refer to their documentation should you need information on anything that isn't covered here.

Prerequisites

  • Git
  • Node.js & npm
  • Yarn

Installation

Firstly, clone the repository using Git:

git clone https://github.com/calcom/docs.git

Now, you can install the dependencies with yarn:

yarn install

Editing

To create, edit and delete documentation pages, you can simply create markdown (.mdx) files in the pages/ folder. You can edit Markdown with any text editor, but VS Code and WebStorm have side-by-side previews so you can see your formatted content whilst writing markdown.

You will also need to add it as an entry to the meta.json file found in whichever directory that the .mdx file is in.

Local Development

yarn dev

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

Build

yarn build

This command generates static content into the build directory and can be served using any static content hosting service.

How to easily contribute

Existing Page

  1. From the documentation's GitHub repository, head to the folder called 'pages' and open it.
  2. From here you can view all current pages on the documentation site. Select the page you would like to contribute to.
  3. You should now be able to view the page you have selected. Located at the top right of the page will be a pencil icon. Pressing this will bring you up an editor to edit and make changes. You can add formatting using the buttons at the top, which will automatically insert the relevant markdown content needed to style the text.
  4. From here make the changes you wish to make.
  5. At the bottom of the screen will be a 'Propose Changes' box, fill in all the relevant details such as title and description then press the green 'Propose Changes' button.
  6. Your changes have been saved, to submit them for review, located on your screen, press the green 'Create Pull Request' button.
  7. Fill in all the relevant details such as title and description and after finalize the submission.

You have now successfully edited and submitted changes to our documentation site.

Creating a New Page

  1. From the documentation's GitHub repository, head to the folder called 'pages' and open it.
  2. From here you can view all current pages on the documentation site. At the top of your screen press the 'New file' button.
  3. You should now be able to view the page you have created. Remember when renaming the document to put .mdx at the end of the file name.
  4. From here make the changes you wish to make. Such as creating a title, sub-title and body text.
  5. At the bottom of the screen will be a 'Propose Changes' box, fill in all the relevant details such as title and description then press the green 'Propose Changes' button.
  6. Your changes have been saved, to submit them for review, located on your screen, press the greem 'Create Pull Request' button.
  7. Fill in all the relevant details such as title and description and after finalize the submission.

You have now successfully created and submitted changes to our documentation site.