-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Unify on just one How This Works module (from ITP) (#1040)
Currently we have several copies that are intended to be in sync. If we want to have them diverge in the future, we can do that. Also, run lots of `hugo mod tidy`, and clean up the resulting go.mod files.
- Loading branch information
1 parent
0b8f101
commit 51f30ef
Showing
67 changed files
with
98 additions
and
463 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,6 @@ | ||
github.com/CodeYourFuture/CYF-PD v1.0.1-0.20240721130916-d70fc853a278 h1:QkyzRerSZyumZ4gxoE7gehj86zWdDY7O4K9pqW8OLtg= | ||
github.com/CodeYourFuture/CYF-PD v1.0.1-0.20240721130916-d70fc853a278/go.mod h1:DJj2pdPceTBoHErILtnZMEYPZZuC8W9Fmt/faaW2tcw= | ||
github.com/CodeYourFuture/CYF-Projects/micro-front-end v0.0.0-20240802103347-3eb0ebf8ad9b h1:iQyvh1DWWbx55Qvs923X2liMosQmQNlFumOrEmgq7c8= | ||
github.com/CodeYourFuture/CYF-Projects/micro-front-end v0.0.0-20240802103347-3eb0ebf8ad9b/go.mod h1:MutmCRXM0wOmDQrZGMmn6jSWHHst5j1AUuf7hwrbILI= | ||
github.com/CodeYourFuture/CYF-Projects/micro-front-end v0.0.0-20240817190624-149d97c26abe h1:3Kjzzk+6UCspKrEv4eTwhlGRisGsRoBR4P03UtC2Yic= | ||
github.com/CodeYourFuture/CYF-Projects/micro-front-end v0.0.0-20240817190624-149d97c26abe/go.mod h1:MutmCRXM0wOmDQrZGMmn6jSWHHst5j1AUuf7hwrbILI= | ||
github.com/CodeYourFuture/CYF-Workshops v0.0.0-20240730222326-e91ae6d11f47 h1:mDxz8UhJ5HUgOfKQSXgAxQ3VRYPe3MrKgj24awTFsqY= | ||
github.com/CodeYourFuture/CYF-Workshops v0.0.0-20240730222326-e91ae6d11f47/go.mod h1:boAUC/K1YXRsqYHTgJwP7REMXh+p7jzEwj5FHAlKyBs= | ||
github.com/CodeYourFuture/CYF-Workshops/micro-front-end v0.0.0-20240802103453-e77217be1596 h1:Vc2ngGyiLYK9mKVk+HQokU5YVuSvcuOKV/VdxGb2MOE= | ||
github.com/CodeYourFuture/CYF-Workshops/micro-front-end v0.0.0-20240802103453-e77217be1596/go.mod h1:KL+gB+sD1SdzQ8Z7fMA74gluqKpsw9rGWNDnJKM07P8= | ||
github.com/CodeYourFuture/curriculum/common-content v0.0.0-20240730234110-686ee61f166f h1:vZubdDqpQ2Pr/DYx7Aa2akWakIODFKy5+v9nwx/ZO9s= | ||
github.com/CodeYourFuture/curriculum/common-content v0.0.0-20240730234110-686ee61f166f/go.mod h1:e3J+XphCBJJ8kf6S9ykVxNY1VKPWJoYuDFXEizlDpCI= | ||
github.com/CodeYourFuture/curriculum/common-theme v0.0.0-20240730234110-686ee61f166f h1:SmxmBC8zpU1cUuHWlb1Gk254V5olSzhjYB9g75GJIyk= | ||
github.com/CodeYourFuture/curriculum/common-theme v0.0.0-20240730234110-686ee61f166f/go.mod h1:kzt+J4JYp5C3GD1dX0rf7vY5fsTUc6Drrn+7p7pjmLg= |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,17 @@ | ||
module github.com/CodeYourFuture/curriculum/org-cyf-how-this-works | ||
|
||
go 1.22.6 | ||
|
||
toolchain go1.22.8 | ||
|
||
require ( | ||
github.com/CodeYourFuture/curriculum/common-content v0.0.0-20241008095008-281a5517463f // indirect | ||
github.com/CodeYourFuture/curriculum/common-theme v0.0.0-20241008095008-281a5517463f // indirect | ||
github.com/CodeYourFuture/curriculum/org-cyf-theme v0.0.0-20241008095008-281a5517463f // indirect | ||
) | ||
|
||
replace github.com/CodeYourFuture/curriculum/common-content => ../common-content | ||
|
||
replace github.com/CodeYourFuture/curriculum/common-theme => ../common-theme | ||
|
||
replace github.com/CodeYourFuture/curriculum/org-cyf-theme => ../org-cyf-theme |
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,6 @@ | ||
github.com/CodeYourFuture/curriculum/common-content v0.0.0-20241008095008-281a5517463f h1:OExhF51yL+NOLFSZVzrnP/sazCLw56jt8rNBRQBsHqY= | ||
github.com/CodeYourFuture/curriculum/common-content v0.0.0-20241008095008-281a5517463f/go.mod h1:e3J+XphCBJJ8kf6S9ykVxNY1VKPWJoYuDFXEizlDpCI= | ||
github.com/CodeYourFuture/curriculum/common-theme v0.0.0-20241008095008-281a5517463f h1:MWuTYYr6gD93tdU5yrukRW3lA0RZNOYT9YUleG6MXNs= | ||
github.com/CodeYourFuture/curriculum/common-theme v0.0.0-20241008095008-281a5517463f/go.mod h1:kzt+J4JYp5C3GD1dX0rf7vY5fsTUc6Drrn+7p7pjmLg= | ||
github.com/CodeYourFuture/curriculum/org-cyf-theme v0.0.0-20241008095008-281a5517463f h1:r9Oor/1DBzHeEZunbUtKt4oWifH/BaSLkxz1v0aAHOw= | ||
github.com/CodeYourFuture/curriculum/org-cyf-theme v0.0.0-20241008095008-281a5517463f/go.mod h1:Wv6VAMOIp5v0eZiHWSGzanDAIfK+prnnPK0hUPeFvwk= |
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,7 @@ | ||
title = "How this works" | ||
description="An introductory course explaining the curriculum and day-to-day flow of life at Code Your Future." | ||
baseURL = "https://curriculum.codeyourfuture.io/" | ||
|
||
[module] | ||
[[module.imports]] | ||
path = "github.com/CodeYourFuture/curriculum/org-cyf-theme" |
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 |
---|---|---|
@@ -1,12 +1,2 @@ | ||
github.com/CodeYourFuture/CYF-PD v1.0.0 h1:/zivfP1G3bwv/+R+wog151/we3BfNlMHhlsVA1u/XW0= | ||
github.com/CodeYourFuture/CYF-PD v1.0.0/go.mod h1:DHl0hTj4HVlLaNcIfwLx3ZkO8R0B08CpvVj2KCJgzpg= | ||
github.com/CodeYourFuture/CYF-PD v1.0.1-0.20240721130916-d70fc853a278 h1:QkyzRerSZyumZ4gxoE7gehj86zWdDY7O4K9pqW8OLtg= | ||
github.com/CodeYourFuture/CYF-PD v1.0.1-0.20240721130916-d70fc853a278/go.mod h1:DJj2pdPceTBoHErILtnZMEYPZZuC8W9Fmt/faaW2tcw= | ||
github.com/CodeYourFuture/curriculum/common-content v0.0.0-20240121151641-e52b73ad527d h1:WfPdLoNvxOrNx3GB+DpYlpEH57v98h0KWXpidN+xdOo= | ||
github.com/CodeYourFuture/curriculum/common-content v0.0.0-20240121151641-e52b73ad527d/go.mod h1:e3J+XphCBJJ8kf6S9ykVxNY1VKPWJoYuDFXEizlDpCI= | ||
github.com/CodeYourFuture/curriculum/common-theme v0.0.0-20240121151641-e52b73ad527d h1:ILE8f9gXLEPEyrJVBdFRVa0Uszf9OVdK4LjXZjCLUag= | ||
github.com/CodeYourFuture/curriculum/common-theme v0.0.0-20240121151641-e52b73ad527d/go.mod h1:kzt+J4JYp5C3GD1dX0rf7vY5fsTUc6Drrn+7p7pjmLg= | ||
github.com/CodeYourFuture/curriculum/org-cyf-guides v0.0.0-20240606160122-fc5c72085f6b h1:GHzTJJAonmevEAYcLIz8E9D8t0GuvfU9Ke+98cDQnws= | ||
github.com/CodeYourFuture/curriculum/org-cyf-guides v0.0.0-20240606160122-fc5c72085f6b/go.mod h1:Suv+qMxRbE8arUU9j3BLg05NLyitSpwgdKacTuSvdu0= | ||
github.com/CodeYourFuture/curriculum/org-cyf-piscine v0.0.0-20240606140350-5d544563778a h1:Gi+xzMDa4xIY/7eBoFJSPu0n7w3zecgUMZmXNKieW5I= | ||
github.com/CodeYourFuture/curriculum/org-cyf-piscine v0.0.0-20240606140350-5d544563778a/go.mod h1:vHl1mi2VfjpfTs0yiqpsq5GxHFBnstBiOrrkxb9Ido4= |
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
This file was deleted.
Oops, something went wrong.
26 changes: 0 additions & 26 deletions
26
org-cyf-sdc/content/how-our-curriculum-works/prep/index.md
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
org-cyf-sdc/content/how-our-curriculum-works/sprints/self-coordinate/_index.md
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
...f-sdc/content/how-our-curriculum-works/sprints/self-coordinate/backlog/index.md
This file was deleted.
Oops, something went wrong.
23 changes: 0 additions & 23 deletions
23
org-cyf-sdc/content/how-our-curriculum-works/sprints/self-coordinate/prep/index.md
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
...f-sdc/content/how-our-curriculum-works/sprints/self-coordinate/success/index.md
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
org-cyf-sdc/content/how-our-curriculum-works/sprints/self-educate/_index.md
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
org-cyf-sdc/content/how-our-curriculum-works/sprints/self-educate/backlog/index.md
This file was deleted.
Oops, something went wrong.
29 changes: 0 additions & 29 deletions
29
org-cyf-sdc/content/how-our-curriculum-works/sprints/self-educate/prep/index.md
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
org-cyf-sdc/content/how-our-curriculum-works/sprints/self-educate/success/index.md
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
org-cyf-sdc/content/how-our-curriculum-works/sprints/self-evaluate/_index.md
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
...cyf-sdc/content/how-our-curriculum-works/sprints/self-evaluate/backlog/index.md
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
org-cyf-sdc/content/how-our-curriculum-works/sprints/self-evaluate/prep/index.md
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
...cyf-sdc/content/how-our-curriculum-works/sprints/self-evaluate/success/index.md
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
org-cyf-sdc/content/how-our-curriculum-works/success/index.md
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
Oops, something went wrong.