generated from amosproj/amos202Xss0Y-projname
-
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.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
22 changed files
with
326 additions
and
86 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
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
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,14 @@ | ||
Title Assignees Status Priority Estimate Size Iteration | ||
Stay on topic in Meetings Done | ||
Documentation mainly on GitHub Wiki Done | ||
Read user story and acceptance during sprint review Done | ||
Smaller, atomic issues Done | ||
Frontend/Backend team communication Done | ||
Avoid pushing decsions to extra meetings Done | ||
Small follow-up summary messages after meetings Done | ||
Using our new milestones - epics - tickets structure Done | ||
Earlier feature preparation for sprint Done | ||
Plan mid-term release In Progress | ||
Code review and code documentation In Progress | ||
Better concept for pull request: Discuss in meeting In Progress | ||
Discuss deliverables sooner In Progress |
Binary file not shown.
Binary file not shown.
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
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 was deleted.
Oops, something went wrong.
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,35 @@ | ||
ServerName localhost | ||
|
||
# Load necessary modules | ||
LoadModule mpm_event_module modules/mod_mpm_event.so | ||
LoadModule headers_module modules/mod_headers.so | ||
LoadModule unixd_module modules/mod_unixd.so | ||
LoadModule dir_module modules/mod_dir.so | ||
LoadModule mime_module modules/mod_mime.so | ||
LoadModule log_config_module modules/mod_log_config.so | ||
LoadModule authz_core_module modules/mod_authz_core.so | ||
LoadModule authz_host_module modules/mod_authz_host.so | ||
|
||
# Set the port to listen on | ||
Listen 80 | ||
|
||
# Enable CORS | ||
<IfModule mod_headers.c> | ||
Header Set Access-Control-Allow-Origin "*" | ||
Header Set Access-Control-Allow-Methods "GET, POST, PUT, DELETE, OPTIONS" | ||
Header Set Access-Control-Allow-Headers "Origin, X-Requested-With, Content-Type, Accept, Authorization" | ||
</IfModule> | ||
|
||
# Directory settings | ||
<Directory "/usr/local/apache2/htdocs"> | ||
Options Indexes FollowSymLinks | ||
AllowOverride None | ||
Require all granted | ||
</Directory> | ||
|
||
# Log settings | ||
ErrorLog /usr/local/apache2/logs/error_log | ||
CustomLog /usr/local/apache2/logs/access_log common | ||
|
||
# Include other necessary configurations | ||
Include conf/extra/httpd-default.conf |
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,18 @@ | ||
#!/bin/bash | ||
|
||
# Variables for the new values | ||
NEW_API_GATEWAY_HOST=$1 | ||
echo "Host to replace: $1" | ||
NEW_API_GATEWAY_PORT=$2 | ||
echo "Port to replace: $2" | ||
|
||
# Directory containing the .js files | ||
DIRECTORY="." | ||
|
||
# Find and replace the API_GATEWAY_HOST and API_GATEWAY_PORT in all .js files | ||
find "$DIRECTORY" -type f -name "*.js" -exec sed -i \ | ||
-e "s|API_GATEWAY_HOST|$NEW_API_GATEWAY_HOST|g" \ | ||
-e "s|API_GATEWAY_PORT|$NEW_API_GATEWAY_PORT|g" {} \; | ||
|
||
echo "API Gateway URL replacement completed, starting Apache HTTPD server..." | ||
httpd-foreground |
Oops, something went wrong.