Skip to content

Commit c591ec6

Browse files
committed
Renamed project
1 parent a43b14b commit c591ec6

29 files changed

+85
-65
lines changed

.github/workflows/azure-static-web-apps-ashy-mushroom-050807710.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
- name: Add token for public pages
2323
run: |
2424
export PUBLIC_PAT=${{ secrets.MITHRANDIR_PUBLIC_TOKEN }}
25-
sed -i "s/PUBLIC_PAT/$PUBLIC_PAT/g" src/RobWill.Blog/wwwroot/appsettings.json
25+
sed -i "s/PUBLIC_PAT/$PUBLIC_PAT/g" src/InJesusWeLive/wwwroot/appsettings.json
2626
- name: Build And Deploy
2727
id: builddeploy
2828
uses: Azure/static-web-apps-deploy@v1
2929
with:
3030
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_ASHY_MUSHROOM_050807710 }}
3131
repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments)
3232
action: "upload"
33-
app_location: "/src/RobWill.Blog" # App source code path
33+
app_location: "/src/InJesusWeLive" # App source code path
3434
api_location: "" # Api source code path - optional
3535
output_location: "wwwroot" # Built app content directory - optional
3636
###### End of Repository/Build Configurations ######
@@ -46,3 +46,4 @@ jobs:
4646
with:
4747
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_ASHY_MUSHROOM_050807710 }}
4848
action: "close"
49+
app_location: "/src/InJesusWeLive"

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
##
44
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
55

6-
# Rob files
6+
# App files
77
.vscode/
88
token_public_repo
99

Rob.sln renamed to InJesusWeLive.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.5.33530.505
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RobWill.Blog", "src\RobWill.Blog\RobWill.Blog.csproj", "{078390D9-BD4E-4A4F-994A-248150968B55}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "InJesusWeLive", "src\InJesusWeLive\InJesusWeLive.csproj", "{078390D9-BD4E-4A4F-994A-248150968B55}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1-
# Rob's Tech Journal
1+
# In Jesus we live
22

3-
This is the source code for my website ([www.robwillup.com](https://www.robwillup.com)).
3+
This is the source code for the website [injesuswelive.org](https://www.injesuswelive.com).
44

55
It's built with [Blazor WASM](https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor) app.
66

7-
My website is a technical journaling of topics I'm learning related to
8-
software engineering, computer science and coding in general.
9-
10-
The content for the pages comes from another GitHub repository I have. The Blazor web app
7+
The content for the pages comes from another GitHub public repository. The Blazor web app
118
calls GitHub's REST API to get the raw document and then renders its Markdown as HTML.
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Text.Json.Serialization;
22

3-
namespace RobWill.Blog;
3+
namespace InJesusWeLive;
44

55
public class GetArticles
66
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace RobWill.Blog;
1+
namespace InJesusWeLive;
22

33
public class Config
44
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Text.Json.Serialization;
22

3-
namespace RobWill.Blog;
3+
namespace InJesusWeLive;
44

55
public class GitHubItem
66
{

0 commit comments

Comments
 (0)