An open API service indexing awesome lists of open source software.

https://github.com/jfrux/hache

Hache is a web development tool targeting developers that want a simple way to start pre-configured httpd instances in any directory.
https://github.com/jfrux/hache

Last synced: over 1 year ago
JSON representation

Hache is a web development tool targeting developers that want a simple way to start pre-configured httpd instances in any directory.

Awesome Lists containing this project

README

          

#HACHE

## What is it?
Hache is a web development tool targeting developers that want a simple way to start pre-configured httpd instances in any directory.
Developing a PHP web app? CFML? WordPress? Simply add the module you need to configure Hache just how you want it, and start the server.

## Yeah, but does it work?
Not really yet, still in heavy development... no timeline really! Sorry!

## Usage
Hache can be configured with very little knowledge of the inner workings of Apache or it's configuration files.
```
sudo npm install hache -g
```

Init a new Hache-based project:
```
hache init
```
Running `hache init` creates a new `Hachefile`
This `Hachefile` will contain examples of things you can change about this environment such as Apache modules needed, port number, etc.
Better yet, this file uses YAML syntax for ease of use and readability.

Special thanks to the `devinrhode2/pache` project for giving me the idea.