Skip to content

Commit

Permalink
Problem: need a Hello, World project
Browse files Browse the repository at this point in the history
Solution: copy from zbroker and strip down.

This builds an empty malamute main service that loads a configuration
file, optionally switches into the background, and then exits.
  • Loading branch information
hintjens committed Oct 11, 2014
1 parent 216d3e3 commit bd6aafc
Show file tree
Hide file tree
Showing 28 changed files with 2,389 additions and 698 deletions.
46 changes: 35 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,29 +1,53 @@
# Object files
*.o
*.ko
*.obj
*.elf

# Precompiled Headers
*.gch
*.pch

# Libraries
*.lib
*.a
*.la
*.lo

# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
*.lo

# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex

Makefile
Makefile.in
aclocal.m4
autom4te.cache/
config.log
config.status
config/
configure
doc/Makefile
doc/Makefile.in
doc/*.1
doc/*.3
doc/*.7
libtool
.deps
.libs
src/Makefile
src/Makefile.in
src/malamute
src/platform.h
src/platform.h.in
src/platform.h.in~
src/stamp-h1
src/test-suite.log
src/mlm_selftest
src/mlm_selftest.log
src/mlm_selftest.trs
doit*
*.la
*.pc
core


4 changes: 4 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Contributors
============

Pieter Hintjens <ph@imatix.com>
9 changes: 9 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Contributing to This Project

The contributors are listed in AUTHORS (add yourself). This project uses the MPL v2 license, see LICENSE.

Please read these documents BEFORE you send a patch:

* We use the [C4.1 (Collective Code Construction Contract)](http://rfc.zeromq.org/spec:22) process for contributions. Please read this if you are unfamiliar with it.

* We use the [CLASS (C Language Style for Scalabilty)](http://rfc.zeromq.org/spec:21) guide for code style. Please read this, and also read the existing code base.
Loading

0 comments on commit bd6aafc

Please sign in to comment.