Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/behrad/chabok-docs
https://github.com/behrad/chabok-docs
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/behrad/chabok-docs
- Owner: behrad
- License: mit
- Created: 2019-08-28T12:36:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-20T10:20:40.000Z (almost 2 years ago)
- Last Synced: 2024-04-14T18:03:29.252Z (9 months ago)
- Language: HTML
- Size: 5.44 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Chabok Documentation
Present chabok push sdk documentaition by jekyl static site generator
## [Read the chabok Documentation](http://doc.chabokpush.com)## Installing some necessary packages
Jekyll requires Ruby to work.please check Ruby was installed.
Now you can install Jekyll and bundler gems using the following command.```bash
gem install jekyll bundler
```switch to jekyll home directory
```bash
bundle install
```Now run the following command to build Jekyll.
```bash
jekyll build
```You should see following output that the server is running.
```bash
onfiguration file: /home/jekyll/_config.yml
Configuration file: /home/jekyll/_config.yml
Source: /home/jekyll
Destination: /home/jekyll/_site
Incremental build: disabled. Enable with --incremental
Generating...
done in 0.401 seconds.
Auto-regeneration: disabled when running server detached.
Configuration file: /home/jekyll/_config.yml
Server address: http://127.0.0.1:4000/
Server detached with pid '7442'. Run `pkill -f jekyll' or `kill -9 7442' to stop the server.
```The site will be now accessible on local system only as it is bound to localhost only. It will also listen to port 4000. You can configure it to listen to all the IP address as well as port number 80, you can run the following command.
```bash
bundle exec jekyll serve --host 0.0.0.0 --port 80 --detach
```Jekyll generate static site in _site folder.