Skip to content

Commit

Permalink
Merge branch 'test' into prod
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickakk committed Oct 4, 2023
2 parents c6ae1aa + d44d070 commit 0f265cb
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 10 deletions.
7 changes: 7 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Release notes

## Version 2023-10
*Release date: 2023-10-04*

### Bug fix
- Fix: cron jobs for search bar, sitemap and course reminders don't work #93


## Version 2023-09
*Release date: 2023-09-19*

Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2023-09
2023-10
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cp .user.ini /app/.heroku/php/etc/php/conf.d/
chown -R 1000:1000 /app/.heroku

# Set PHP path
source /app/src/Command/set_php_path.sh
export PATH="/layers/heroku_php/platform/bin:${PATH}"

# Generate JSON file required for searchbar
bin/cake gen_search_list
Expand Down
2 changes: 1 addition & 1 deletion src/Command/course_reminders.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

### ENV ###
# Set PHP path
source /app/src/Command/set_php_path.sh
export PATH="/layers/heroku_php/platform/bin:${PATH}"

### CAKE COMMANDS ###
bin/cake course_reminders 2>&1
2 changes: 1 addition & 1 deletion src/Command/discovery.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
### ENV ###
CAKE_PATH='/app'
# Set PHP path
source /app/src/Command/set_php_path.sh
export PATH="/layers/heroku_php/platform/bin:${PATH}"

### CAKE COMMANDS ###
cd $CAKE_PATH && bin/cake discovery 2>&1;
2 changes: 1 addition & 1 deletion src/Command/gen_search_list.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

### ENV ###
# Set PHP path
source /app/src/Command/set_php_path.sh
export PATH="/layers/heroku_php/platform/bin:${PATH}"

### CAKE COMMANDS ###
bin/cake gen_search_list
2 changes: 1 addition & 1 deletion src/Command/gen_sitemap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

### ENV ###
# Set PHP path
source /app/src/Command/set_php_path.sh
export PATH="/layers/heroku_php/platform/bin:${PATH}"

### CAKE COMMANDS ###
bin/cake gen_sitemap
2 changes: 1 addition & 1 deletion src/Command/send_test_mail.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

### ENV ###
# Set PHP path
source /app/src/Command/set_php_path.sh
export PATH="/layers/heroku_php/platform/bin:${PATH}"

### CAKE COMMANDS ###
bin/cake send_test_mail
2 changes: 0 additions & 2 deletions src/Command/set_php_path.sh

This file was deleted.

2 changes: 1 addition & 1 deletion src/Command/subscriptions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

### ENV ###
# Set PHP path
source /app/src/Command/set_php_path.sh
export PATH="/layers/heroku_php/platform/bin:${PATH}"

### CAKE COMMANDS ###
bin/cake subscriptions 2>&1

0 comments on commit 0f265cb

Please sign in to comment.