-
Notifications
You must be signed in to change notification settings - Fork 6
/
README
46 lines (34 loc) · 1.59 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
This is the README for darklaunch. darklaunch is an Erlang daemon
which manages a JSON file describing the feature flags available to
each org.
* License
All files in the repository are licensed under the Apache 2.0 license. If any
file is missing the License header it should assume the following is attached;
Copyright 2014 Chef Software Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Building & Running darklaunch:
1) make rel
2) cd rel/darklaunch
3) bin/darklaunch console
Hacking on darklaunch:
1) make devrel(*)
2) Edit code
3) Compile and reload via 'make update'(**)
*The devrel target generates a standard OTP release and then
symlinks the code for all dependencies and the application
code into the resulting release tree. This allows a shorter
edit/compile/debug cycle during development when devrel is
coupled with 'make update'.
** The update target compiles any changed files and performs
a warm restart of the Erlang VM. This triggers a global
code reload. This is very handy when hacking on the code
or trying to debug a problem. 'make update' only works when
a release has been built via 'make devrel'.