Skip to content

Commit c5233b7

Browse files
committed
Initiate repository
1 parent f2d4e52 commit c5233b7

19 files changed

+80
-3430
lines changed

.editorconfig

+8
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,13 @@ root = true
33
[*]
44
end_of_line = lf
55
insert_final_newline = true
6+
trim_trailing_whitespace = true
7+
charset = utf-8
8+
9+
[*.js]
10+
indent_style = space
611
indent_size = 2
12+
13+
[{package.json,*.yml,*.cjson}]
714
indent_style = space
15+
indent_size = 2

.eslintignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dist
2+
.output
3+
node-modules

.eslintrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"extends": [
3+
"@nuxtjs/eslint-config-typescript"
4+
]
5+
}

.eslintrc.json

-18
This file was deleted.

.github/workflows/build_release.yml

-60
This file was deleted.

.github/workflows/linting_testing.yml

-42
This file was deleted.

.gitignore

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
node_modules
2-
dist
2+
*.log*
3+
.nitro
4+
.cache
5+
.output
6+
.env
7+
dist

.npmrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
shamefully-hoist=true
2+
strict-peer-dependencies=false

.prettierrc.js

-4
This file was deleted.

.vscode/extensions.json

-6
This file was deleted.

.vscode/settings.json

-5
This file was deleted.

README.md

+41-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,42 @@
1-
# Cloudflare worker proxy
1+
# Nitro Minimal Starter
22

3-
Simple http proxy in a cloudflare worker.
3+
Look at the [Nitro documentation](https://nitro.unjs.io/) to learn more.
4+
5+
## Setup
6+
7+
Make sure to install the dependencies:
8+
9+
```bash
10+
# npm
11+
npm install
12+
13+
# yarn
14+
yarn install
15+
16+
# pnpm
17+
pnpm install
18+
```
19+
20+
## Development Server
21+
22+
Start the development server on <http://localhost:3000>
23+
24+
```bash
25+
npm run dev
26+
```
27+
28+
## Production
29+
30+
Build the application for production:
31+
32+
```bash
33+
npm run build
34+
```
35+
36+
Locally preview production build:
37+
38+
```bash
39+
npm run preview
40+
```
41+
42+
Check out the [deployment documentation](https://nitro.unjs.io/deploy) for more information.

nitro.config.ts

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
//https://nitro.unjs.io/config
2+
export default defineNitroConfig({});

0 commit comments

Comments
 (0)