-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
22 lines (18 loc) · 719 Bytes
/
Makefile
File metadata and controls
22 lines (18 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Open new gnoem-terminal windows for starting ngrok and tail'ing the logs
setup:
gnome-terminal -e "ngrok http 8080"
gnome-terminal --working-directory="${CURDIR}" -e "make tail"
# Run the code review server
run:
perl server.pl
ngrok:
ngrok http 8080
# View logs with tail
tail:
tail -f /tmp/code-kaiser
# DateTime had install problems on RedHat through cpan, so switched that to use DNF, you will need to switch back to CPAN if not on RedHat/Fedora
install-dependencies:
sudo cpan install --force Async Text::Diff::Parser HTTP::Server::Simple::CGI Data::Dumper \
JSON DateTime DateTime::Format::Builder DateTime::Format::ISO8601 \
Data::Structure::Util
sudo dnf install -y perl-DateTime*