Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 751 Bytes

File metadata and controls

24 lines (20 loc) · 751 Bytes

er-chat

This is an Erlang IRC server made as a project for a course at Uppsala university.

ERLANG VERSION

This software was developed and tested using Erlang OTP 17.0.

MAKE IT HAPPNE

Using the make utility you can perform the following actions:

make         ==> Compiles the Erlang source files if necessary.
make archive ==> Creates a gziped tar archive of this directory.
make clean   ==> Removes all beam files and html files generated by Edoc.
make doc     ==> Generates Edoc documentation in the doc/html directory.
make start   ==> Starts the system.
make test    ==> Runs all Eunit tests.

RUN THE IRC SERVER

Start Erlang and run the following to run the IRC Server at port 6667:

database:start().
server:start().