-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from kikuomax/zola-based
Introduction of Zola and CDK
- Loading branch information
Showing
118 changed files
with
18,349 additions
and
212 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,17 @@ | ||
[English](./README.md) / 日本語 | ||
|
||
# codemonger | ||
|
||
![codemonger](docs/imgs/codemonger.svg) | ||
|
||
`codemonger.io`のウェブサイトを管理するためのレポジトリです。 | ||
|
||
ウェブサイトは[AWS](https://aws.amazon.com)でホストしています。 | ||
|
||
## AWSのリソースを管理する | ||
|
||
サブフォルダ[`cdk`](cdk/README.ja.md)をご覧ください。 | ||
|
||
## コンテンツを管理する | ||
|
||
サブフォルダ[`zola`](zola/README.ja.md)をご覧ください。 |
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,11 +1,17 @@ | ||
English / [日本語](./README.ja.md) | ||
|
||
# codemonger | ||
|
||
![codemonger](docs/imgs/codemonger.svg) | ||
|
||
This is a repository to maintain the landing page of codemonger.io. | ||
This is a repository to maintain the website of `codemonger.io`. | ||
|
||
The website is hosted on [AWS](https://aws.amazon.com). | ||
|
||
## Managing AWS resources | ||
|
||
The landing page is hosted on [AWS](https://aws.amazon.com). | ||
Please refer to the subfolder [`cdk`](cdk). | ||
|
||
## Deploying the landing page | ||
## Managing contents | ||
|
||
Please refer to the subdirectory [`aws`](aws). | ||
Please refer to the subfolder [`zola`](zola). |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
*.js | ||
!jest.config.js | ||
!/babel.config.js | ||
!/cloudfront-fn/*.js | ||
*.d.ts | ||
!/cloudfront-fn/*.d.ts | ||
node_modules | ||
|
||
# CDK asset staging directory | ||
.cdk.staging | ||
cdk.out | ||
|
||
# config files | ||
/lib/certificate-config.ts |
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 @@ | ||
*.ts | ||
!*.d.ts | ||
|
||
# CDK asset staging directory | ||
.cdk.staging | ||
cdk.out |
Oops, something went wrong.