Skip to content

Commit 673e205

Browse files
committed
New
1 parent 6a38425 commit 673e205

72 files changed

Lines changed: 20584 additions & 3305 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @ninjaninja140

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [ninjaninja140]

.github/workflows/cve.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Trivy Scan
2+
on: push
3+
4+
jobs:
5+
trivy:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
- name: Run Trivy filesystem scan
10+
uses: aquasecurity/trivy-action@0.24.0
11+
with:
12+
scan-type: fs
13+
ignore-unfixed: true
14+
format: sarif
15+
output: trivy-results.sarif
16+
severity: CRITICAL,HIGH

.github/workflows/pages.temp.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Deploy to Cloudflare
2+
3+
on:
4+
#push:
5+
workflow_dispatch:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
contents: read
12+
deployments: write
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
16+
with:
17+
node-version: latest
18+
19+
# Install Packages
20+
- run: yarn install
21+
22+
# Build site
23+
- name: Build Site
24+
run: yarn build
25+
26+
- name: Deploy
27+
uses: cloudflare/wrangler-action@v3
28+
with:
29+
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
30+
accountId: ${{ secrets.WORKERS_ACCOUNT_ID }}
31+
gitHubToken: ${{ secrets.GITHUB_TOKEN }}

.prettierrc

Lines changed: 0 additions & 22 deletions
This file was deleted.

.yarn/install-state.gz

435 KB
Binary file not shown.

.yarn/releases/yarn-4.12.0.cjs

Lines changed: 942 additions & 0 deletions
Large diffs are not rendered by default.

.yarn/releases/yarn-4.5.2.cjs

Lines changed: 0 additions & 934 deletions
This file was deleted.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
nodeLinker: node-modules
22

3-
yarnPath: .yarn/releases/yarn-4.5.2.cjs
3+
yarnPath: .yarn/releases/yarn-4.12.0.cjs

README.md

Lines changed: 11 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,14 @@
1-
# Getting Started with Create React App
1+
# @TEMPLATES
22

3-
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
3+
## React Vike[Vike] Website with TypeScript
44

5-
## Available Scripts
5+
There's not much to say here, you kind of just work out how things work along the way.
66

7-
In the project directory, you can run:
8-
9-
### `yarn start`
10-
11-
Runs the app in the development mode.\
12-
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
13-
14-
The page will reload if you make edits.\
15-
You will also see any lint errors in the console.
16-
17-
### `yarn test`
18-
19-
Launches the test runner in the interactive watch mode.\
20-
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21-
22-
### `yarn build`
23-
24-
Builds the app for production to the `build` folder.\
25-
It correctly bundles React in production mode and optimizes the build for the best performance.
26-
27-
The build is minified and the filenames include the hashes.\
28-
Your app is ready to be deployed!
29-
30-
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31-
32-
### `yarn eject`
33-
34-
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
35-
36-
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37-
38-
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
39-
40-
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
41-
42-
## Learn More
43-
44-
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45-
46-
To learn React, check out the [React documentation](https://reactjs.org/).
7+
- [Vike Documentation](https://vike.dev)
8+
- [Vite Documentation](https://vite.dev)
9+
- [React Documentation](https://react.dev)
10+
- Running: `yarn start`
11+
- Dev Server: `yarn dev`
12+
- Generate Cloudflare Typings: `yarn cf-types`
13+
- Preview: `yarn preview`
14+
- Build: `yarn build`

0 commit comments

Comments
 (0)