Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,25 @@
ebin
.eunit
.erlang.mk/
*.swp
*.swo
*.d
ebin/
run.sh
*.o
*.beam
*.plt
erl_crash.dump
.concrete/DEV_MODE

# rebar 2.x
.rebar
rel/example_project
ebin/*.beam
deps

# rebar 3
.rebar3
_build/
_checkouts/
_rel/
deps/
17 changes: 6 additions & 11 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
PROJECT = ecsv
PROJECT_VERSION = $(shell git describe --tag --abbrev=0)

.PHONY: deps doc
app:: rebar.config

all: deps compile

compile:
@./rebar compile

deps:
@./rebar get-deps

clean:
@./rebar clean
include $(if $(ERLANG_MK_FILENAME),$(ERLANG_MK_FILENAME), erlang.mk)

ERLC_OPTS += $(ERLC_COMPILE_OPTS)
TEST_ERLC_OPTS += $(ERLC_COMPILE_OPTS)
9 changes: 0 additions & 9 deletions NOTICE

This file was deleted.

3 changes: 3 additions & 0 deletions conf/sys.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[
{ecsv, []}
].
20 changes: 20 additions & 0 deletions conf/vm.args
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
-sname erlcsv

## Enable kernel poll and a few async threads
+K true
+A 5
+P 10000000

## Tweak GC to run more often
-env ERL_FULLSWEEP_AFTER 10

## Heartbeat management; auto-restarts VM if it dies or becomes unresponsive
## (Disabled by default..use with caution!)
##-heart

## Increase number of concurrent ports/sockets
-env ERL_MAX_PORTS 4096

-kernel inet_dist_listen_min 5000 inet_dist_listen_max 5010

-sasl sasl_error_logger false
Loading