File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -56,4 +56,5 @@ build-iPhoneSimulator/
5656# .rubocop-https?--*
5757
5858.env
59- config /postgresql.yml
59+ config /postgresql.yml
60+ puma.pid
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ #
4+ # SPDX-License-Identifier: BSD-2-Clause
5+ #
6+ # server_devel.sh
7+ # Part of NetDEF CI System
8+ #
9+ # Copyright (c) 2023 by
10+ # Network Device Education Foundation, Inc. ("NetDEF")
11+ #
12+ # frozen_string_literal: true
13+ #
14+
15+ #
16+ # SPDX-License-Identifier: BSD-2-Clause
17+ #
18+ # Startup script for CI Slack Bot
19+
20+ echo " >> Running server"
21+ rackup -o 0.0.0.0 -p 4681 config.ru
Original file line number Diff line number Diff line change 1+ [Unit]
2+ Description ="CI Slack Bot DEVEL"
3+ After =network.target
4+
5+ [Service]
6+ User =slack_cibot_devel
7+ WorkingDirectory =/home/slack_cibot_devel/slack_github_bot
8+ ExecStart =/home/slack_cibot_devel/slack_github_bot/service/devel/server_devel.sh
9+ Restart =always
10+
11+ [Install]
12+ WantedBy =multi-user.target
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ #
4+ # SPDX-License-Identifier: BSD-2-Clause
5+ #
6+ # server.sh
7+ # Part of NetDEF CI System
8+ #
9+ # Copyright (c) 2023 by
10+ # Network Device Education Foundation, Inc. ("NetDEF")
11+ #
12+ # frozen_string_literal: true
13+ #
14+
15+ #
16+ # SPDX-License-Identifier: BSD-2-Clause
17+ #
18+ # Startup script for CI Slack Bot
19+
20+ echo " >> Running server"
21+ rackup -o 0.0.0.0 -p 4680 config.ru
Original file line number Diff line number Diff line change 1+ [Unit]
2+ Description ="CI Slack Bot DEVEL"
3+ After =network.target
4+
5+ [Service]
6+ User =slack_cibot_devel
7+ WorkingDirectory =/home/slack_cibot/slack_github_bot
8+ ExecStart =/home/slack_cibot/slack_github_bot/service/prod/server.sh
9+ Restart =always
10+
11+ [Install]
12+ WantedBy =multi-user.target
You can’t perform that action at this time.
0 commit comments