Update docs website
This commit is contained in:
parent
814cda499c
commit
a9b0eb3c15
6 changed files with 19 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
|||
<!-- docs/_sidebar.md -->
|
||||
|
||||
* [Home](/)
|
||||
* [Ubuntu Installation Guide](development/environment-setup/ubuntu.md)
|
||||
* [Development Guide](development/environment-setup/ubuntu.md)
|
||||
* [Project Dependencies](development/project-setup/dependencies.md)
|
||||
* [Environment Variables](development/project-setup/environment-variables.md)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Setting up development environment in Ubuntu
|
||||
## Ubuntu
|
||||
|
||||
Open a terminal and run the following commands
|
||||
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
## Project dependencies
|
||||
|
||||
### Install Chatwoot Ruby dependencies
|
||||
### Install Ruby dependencies
|
||||
|
||||
Use the following command to install ruby dependencies.
|
||||
|
||||
|
@ -8,7 +6,7 @@ Use the following command to install ruby dependencies.
|
|||
bundle
|
||||
```
|
||||
|
||||
### Install Chatwoot JavaScript dependencies
|
||||
### Install JavaScript dependencies
|
||||
|
||||
```bash
|
||||
yarn
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
## Environment variables
|
||||
|
||||
### Setup environment variables
|
||||
|
||||
Copy `database` and `application` variables to the correct location.
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
<meta name="description" content="Description">
|
||||
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
|
@ -15,6 +16,9 @@
|
|||
name: 'Chatwoot',
|
||||
repo: 'chatwoot/chatwoot',
|
||||
loadSidebar: true,
|
||||
subMaxLevel: 4,
|
||||
notFoundPage: true,
|
||||
logo: '.github/woot-logo.svg'
|
||||
}
|
||||
</script>
|
||||
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
|
||||
|
|
11
docs/styles.css
Normal file
11
docs/styles.css
Normal file
|
@ -0,0 +1,11 @@
|
|||
html, body {
|
||||
font-family: Avenir, -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif
|
||||
}
|
||||
|
||||
.app-name-link img {
|
||||
max-width: 60%;
|
||||
}
|
||||
|
||||
.markdown-section pre > code {
|
||||
font-family: Monaco;
|
||||
}
|
Loading…
Reference in a new issue