-
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.
- Loading branch information
Showing
5 changed files
with
40 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
cd /d D:\home\site\wwwroot\cache | ||
rd /s /q . |
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 |
---|---|---|
@@ -1,2 +1,19 @@ | ||
|
||
[](https://azuredeploy.net/) | ||
[](https://azuredeploy.net/) | ||
|
||
# READ THIS before you deploy | ||
If you are having issues with DEPLOYEMENT, file a [ISSUE here, on github](https://github.com/botmtl/ttrss-azure-deployment/issues). DO NOT use the Tiny-Tiny RSS discussion board for deployement issues. | ||
|
||
Initial username and password are admin/password. Change that ASAP. | ||
|
||
This Tiny-Tiny RSS deployement is made on an UNSUPORTED PLATFORM. If you are having issues with Tiny-Tiny RSS, DO NOT post in the main forum, use the [UNSUPPORTED-PLATFORMS](https://discourse.tt-rss.org/c/tiny-tiny-rss/unsupported-platforms/) section of the forum. Clearly state the platform you are using (IIS/mysql) and your provider (Azure) and the the issue you are having. If you are unsure, create an [issue here](https://github.com/botmtl/ttrss-azure-deployment/issues) first and I will tell you if this needs the tt-rss forum or not. | ||
|
||
# How is this deployement different than the [BITNAMI deployement](https://azuremarketplace.microsoft.com/en-us/marketplace/apps/bitnami.tinytinyrss?tab=Overview)? | ||
- This deployement does not create or use a (costly) virtual machine. | ||
|
||
# Free? | ||
- This deployement uses a standard Web-App with a Mysql-In-App database. | ||
- Feed updates are scheduled with the WebJobs module ("0 */4 * * *") | ||
- These Azure modules are free to use (this project can be deployed on a student [Microsoft Imagine](https://imagine.microsoft.com/) subscription). | ||
- Usual restrictions apply (1Tb disk space and you can't abuse your free default vm without it disabling itself until the end of the month). | ||
|
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,4 @@ | ||
REM Wake up site | ||
"D:\Program Files (x86)\Git\usr\bin\curl.exe" %WEBSITE_HOSTNAME% > nul | ||
REM Update Feeds | ||
"D:\Program Files (x86)\PHP\v7.0\php.exe" "D:\home\site\wwwroot\update.php" --feeds --force-update |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
REM Wake up site | ||
"D:\Program Files (x86)\Git\usr\bin\curl.exe" %WEBSITE_HOSTNAME% > nul | ||
REM Update Feeds | ||
"D:\Program Files (x86)\PHP\v7.0\php.exe" "D:\home\site\wwwroot\update.php" --feeds | ||
"D:\Program Files (x86)\PHP\v7.0\php.exe" "D:\home\site\wwwroot\update.php" --feeds |