Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/botman/botman.io
BotMan website
https://github.com/botman/botman.io
botman
Last synced: about 1 month ago
JSON representation
BotMan website
- Host: GitHub
- URL: https://github.com/botman/botman.io
- Owner: botman
- Created: 2017-01-08T21:07:52.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-11T22:27:08.000Z (almost 2 years ago)
- Last Synced: 2024-05-01T12:25:05.775Z (8 months ago)
- Topics: botman
- Language: PHP
- Homepage: https://botman.io
- Size: 8.38 MB
- Stars: 21
- Watchers: 5
- Forks: 15
- Open Issues: 16
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
BotMan Website
===This is the source of the botman.io website.
Documentation
---The website's documentation is loaded from the `resources/docs` directory. You will need to clone the documentation into this directory. The documentation is stored on GitHub at [mpociot/botman-docs](https://github.com/mpociot/botman-docs).
Installation
---Open Source Frameworks are teamwork - that's why we also have a [Teamwork](https://github.com/mpociot/teamwork) package for Laravel applications. If you want to contribute to the BotMan website and docs, you get started with these commands:
```bash
# Clone the main project
git clone [email protected]:botman/botman.io.git
cd botman.io# Initial Setup
composer install
cp .env.example .env
php artisan key:generate# If the docs were not fetched through the post install command of composer
# run the following to fetch the documentation
git clone -b 1.4 [email protected]:botman/docs.git resources/docs/1.4
git clone -b 1.5 [email protected]:botman/docs.git resources/docs/1.5
git clone -b 2.0 [email protected]:botman/docs.git resources/docs/2.0
git clone -b master [email protected]:botman/docs.git resources/docs/master
```