-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: OurchitectureIO <[email protected]>
- Loading branch information
1 parent
a590eac
commit 3d0d8d3
Showing
32 changed files
with
17,286 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,6 +66,7 @@ | |
}, | ||
"workspaces": [ | ||
"src/designs/**/*", | ||
"src/systems/dev/nexus", | ||
"src/systems/leadof/**/*" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,5 @@ metadata: | |
spec: | ||
targets: | ||
- ./groups/catalog-info.yaml | ||
- ./systems/catalog-info.yaml | ||
- ./users/catalog-info.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM httpd:2.4.58-alpine3.19@sha256:92535cf7f151901ba91b04186292c3bd5bf82aa6ffa6eb7bc405fefbffedd480 | ||
|
||
# Copy the files. | ||
COPY . /usr/local/apache2/htdocs/ | ||
|
||
# Move the configuration file. | ||
# Remove the default "index.html" file. | ||
RUN mv /usr/local/apache2/htdocs/httpd.conf /usr/local/apache2/conf/httpd.conf \ | ||
&& rm /usr/local/apache2/htdocs/index.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
ServerRoot "/usr/local/apache2" | ||
Listen 3005 | ||
LoadModule mpm_event_module modules/mod_mpm_event.so | ||
LoadModule authn_file_module modules/mod_authn_file.so | ||
LoadModule authz_core_module modules/mod_authz_core.so | ||
LoadModule dir_module modules/mod_dir.so | ||
LoadModule log_config_module modules/mod_log_config.so | ||
LoadModule mime_module modules/mod_mime.so | ||
LoadModule unixd_module modules/mod_unixd.so | ||
|
||
ServerAdmin [email protected] | ||
ServerName localhost | ||
|
||
DocumentRoot "/usr/local/apache2/htdocs" | ||
<Directory "/usr/local/apache2/htdocs"> | ||
Options Indexes FollowSymLinks | ||
AllowOverride None | ||
Require all granted | ||
</Directory> | ||
|
||
ErrorLog "logs/error_log" | ||
LogLevel warn | ||
|
||
<IfModule log_config_module> | ||
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined | ||
CustomLog "logs/access_log" combined | ||
</IfModule> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
.PHONY: install | ||
install: | ||
@echo "Installing ourstage catalog..." | ||
@docker build \ | ||
--tag localhost/ourstage/catalog:latest \ | ||
--file ./containerfile \ | ||
./ | ||
@echo "Installing started ourstage catalog." | ||
|
||
.PHONY: debug | ||
debug: install | ||
@echo "Debugging ourstage catalog..." | ||
@docker run \ | ||
--name debug-ourstage-catalog \ | ||
--rm \ | ||
--interactive \ | ||
--tty \ | ||
--entrypoint /bin/sh \ | ||
--user root \ | ||
--network host \ | ||
localhost/ourstage/catalog:latest | ||
@echo "Successfully debugged ourstage catalog." | ||
|
||
.PHONY: up | ||
up: install | ||
@echo "Starting ourstage catalog..." | ||
@docker run \ | ||
--detach \ | ||
--name ourstage-catalog \ | ||
--network host \ | ||
--user root \ | ||
localhost/ourstage/catalog:latest | ||
@echo "Ourstage catalog is available at http://localhost:3005." | ||
@echo "Successfully started ourstage catalog." | ||
.PHONY: start | ||
start: up | ||
.PHONY: startup | ||
startup: up | ||
.PHONY: serve | ||
serve: up | ||
.PHONY: run | ||
run: up | ||
|
||
.PHONY: logs | ||
logs: | ||
@echo "Getting ourstage catalog logs..." | ||
@docker logs ourstage-catalog | ||
@echo "Successfully got ourstage catalog logs." | ||
|
||
.PHONY: down | ||
down: | ||
@echo "Stopping ourstage catalog..." | ||
@docker rm -f ourstage-catalog || true | ||
@echo "Successfully stopped ourstage catalog." | ||
.PHONY: stop | ||
stop: down | ||
.PHONY: shutdown | ||
shutdown: down | ||
|
||
.PHONY: restart | ||
restart: down up |
Oops, something went wrong.