Skip to content

Commit 46bf3f1

Browse files
committed
sf61 new website build test
test, hope works
1 parent 05fa14b commit 46bf3f1

File tree

287 files changed

+9442
-43523
lines changed

Some content is hidden

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

287 files changed

+9442
-43523
lines changed

summit/.gitignore

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2-
3-
# dependencies
4-
/node_modules
5-
/.pnp
6-
.pnp.js
7-
8-
# testing
9-
/coverage
1+
.DS_Store
2+
node_modules
3+
/dist
104

11-
# production
12-
/build
135

14-
# misc
15-
.DS_Store
6+
# local env files
167
.env.local
17-
.env.development.local
18-
.env.test.local
19-
.env.production.local
8+
.env.*.local
209

10+
# Log files
2111
npm-debug.log*
2212
yarn-debug.log*
2313
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
# Editor directories and files
17+
.idea
18+
.vscode
19+
*.suo
20+
*.ntvs*
21+
*.njsproj
22+
*.sln
23+
*.sw?

summit/README.md

+4-37
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,7 @@
1-
# Project Name
1+
# Vue 3 + Vite
22

3-
## Introduction
3+
This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
44

5-
creat-react-app
5+
## Recommended IDE Setup
66

7-
## Setup
8-
9-
To run this project locally, you will need to follow these steps:
10-
11-
1. Clone the repository:
12-
```
13-
git clone https://github.com/GPT-DAO/genaisummit.git
14-
```
15-
16-
2. Navigate to the project directory:
17-
```
18-
cd genaisummit
19-
cd summit
20-
```
21-
22-
3. Install the dependencies:
23-
```
24-
npm install
25-
```
26-
27-
4. Start the development server:
28-
```
29-
npm start
30-
```
31-
32-
The application will then be accessible at `http://localhost:3000`.
33-
34-
5. Deploy
35-
```
36-
npm run build
37-
npm run deploy
38-
```
39-
40-
It takes several seconds to deploy the change to the auto-generated gh-pages branch.
7+
- [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).

summit/index.html

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta
7+
name="viewport"
8+
content="width=device-width,initial-scale=1,user-scalable=no"
9+
/>
10+
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
11+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
12+
<title>GPTDAO</title>
13+
</head>
14+
<body>
15+
<div id="app"></div>
16+
<script type="module" src="/src/main.js"></script>
17+
</body>
18+
</html>

0 commit comments

Comments
 (0)