Skip to content

Commit

Permalink
Initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
revmischa committed Sep 30, 2022
1 parent 7895f4b commit 96747bd
Show file tree
Hide file tree
Showing 11 changed files with 1,974 additions and 121 deletions.
102 changes: 6 additions & 96 deletions .eslintrc.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .prettierrc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
semi: true
printWidth: 120
trailingComma: es5
singleQuote: true
52 changes: 50 additions & 2 deletions .projen/deps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 16 additions & 4 deletions .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,26 @@ const { awscdk } = require('projen');
const project = new awscdk.AwsCdkConstructLibrary({
author: 'Mischa Spiegelmock',
authorAddress: '[email protected]',
cdkVersion: '2.1.0',
cdkVersion: '2.39.0',
defaultReleaseBranch: 'main',
name: 'nextjs-cdk',
name: 'cdk-nextjs',
repositoryUrl: 'https://github.com/revmischa/nextjs-cdk.git',

// deps: [], /* Runtime dependencies of this module. */
bundledDeps: [
'chalk',
'cross-spawn',
'fs-extra',
'indent-string',
'micromatch',
'@types/cross-spawn',
'@types/fs-extra',
'@types/micromatch',
'esbuild',
] /* Runtime dependencies of this module. */,
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */
// devDeps: [], /* Build dependencies for this module. */
// packageName: undefined, /* The "name" in package.json. */

eslintOptions: { prettier: true },
});
project.synth();
project.synth();
42 changes: 42 additions & 0 deletions assets/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />

<title>NextJS Placeholder</title>
<meta name="description" content="A placeholder website" />

<style>
body,
html {
margin: 0;
height: 100%;
display: grid;
color: #fffbf9;
font-family: monospace;
background-color: #2e4a56;
}
section {
margin: auto;
text-align: center;
}
h1 {
font-size: 3rem;
text-align: center;
}
p {
font-size: 24px;
}
a {
color: #e27152;
}
</style>
</head>
<body>
<section>
<h1>NextJS AWS</h1>
<p>This is a placeholder.</p>
<p>Probably you want to connect to your local NextJS dev server.</p>
</section>
</body>
</html>
Binary file added assets/sharp-0.30.0.zip
Binary file not shown.
31 changes: 28 additions & 3 deletions package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 96747bd

Please sign in to comment.