Skip to content

Commit

Permalink
Update docs website
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavrajs committed Sep 22, 2019
1 parent 814cda4 commit a9b0eb3
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/_sidebar.md
@@ -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)
2 changes: 1 addition & 1 deletion docs/development/environment-setup/ubuntu.md
@@ -1,4 +1,4 @@
## Setting up development environment in Ubuntu
## Ubuntu

Open a terminal and run the following commands

Expand Down
6 changes: 2 additions & 4 deletions docs/development/project-setup/dependencies.md
@@ -1,14 +1,12 @@
## Project dependencies

### Install Chatwoot Ruby dependencies
### Install Ruby dependencies

Use the following command to install ruby dependencies.

```bash
bundle
```

### Install Chatwoot JavaScript dependencies
### Install JavaScript dependencies

```bash
yarn
Expand Down
2 changes: 0 additions & 2 deletions docs/development/project-setup/environment-variables.md
@@ -1,5 +1,3 @@
## Environment variables

### Setup environment variables

Copy `database` and `application` variables to the correct location.
Expand Down
4 changes: 4 additions & 0 deletions docs/index.html
Expand Up @@ -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>
Expand All @@ -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>
Expand Down
11 changes: 11 additions & 0 deletions docs/styles.css
@@ -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;
}

0 comments on commit a9b0eb3

Please sign in to comment.