Skip to content

Commit

Permalink
🚀 init template
Browse files Browse the repository at this point in the history
  • Loading branch information
Girish21 committed May 22, 2022
1 parent 1c11706 commit 191a2bb
Show file tree
Hide file tree
Showing 67 changed files with 55,648 additions and 5,043 deletions.
6 changes: 6 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules
.cache/
build/
public/build/
**/*.js
**/*.ignore.*
9 changes: 2 additions & 7 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
module.exports = {
root: true,
// This tells ESLint to load the config from the package `eslint-config-custom`
extends: ["custom"],
settings: {
next: {
rootDir: ["apps/*/"],
},
},
};
extends: ['custom'],
}
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
16
6 changes: 6 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules
.cache/
build/
public/build/
app/styles
**/*.ignore.*
7 changes: 7 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"arrowParens": "avoid",
"trailingComma": "all"
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Turborepo starter with npm
# Remix + Cloudflare Workers starter with Turborepo

This is an official starter turborepo.
Starter to get going with Remix and Cloudflare Workers

## What's inside?

Expand Down
30 changes: 0 additions & 30 deletions apps/docs/README.md

This file was deleted.

5 changes: 0 additions & 5 deletions apps/docs/next-env.d.ts

This file was deleted.

5 changes: 0 additions & 5 deletions apps/docs/next.config.js

This file was deleted.

26 changes: 0 additions & 26 deletions apps/docs/package.json

This file was deleted.

10 changes: 0 additions & 10 deletions apps/docs/pages/index.tsx

This file was deleted.

5 changes: 0 additions & 5 deletions apps/docs/tsconfig.json

This file was deleted.

30 changes: 0 additions & 30 deletions apps/web/README.md

This file was deleted.

5 changes: 0 additions & 5 deletions apps/web/next-env.d.ts

This file was deleted.

5 changes: 0 additions & 5 deletions apps/web/next.config.js

This file was deleted.

26 changes: 0 additions & 26 deletions apps/web/package.json

This file was deleted.

10 changes: 0 additions & 10 deletions apps/web/pages/index.tsx

This file was deleted.

5 changes: 0 additions & 5 deletions apps/web/tsconfig.json

This file was deleted.

4 changes: 2 additions & 2 deletions apps/docs/.eslintrc.js → config/cloudflare-env/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
root: true,
extends: ["custom"],
};
extends: ['custom'],
}
7 changes: 7 additions & 0 deletions config/cloudflare-env/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
interface Env {
__STATIC_CONTENT: KVNamespace

COUNTER: DurableObjectNamespace

SESSION_SECRET: string
}
Loading

0 comments on commit 191a2bb

Please sign in to comment.