Skip to content

Commit 2f0a032

Browse files
author
Leo Jin
committed
create project
0 parents  commit 2f0a032

File tree

5 files changed

+2618
-0
lines changed

5 files changed

+2618
-0
lines changed

.env.example

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# ------------------------------------------------------------------------------
2+
# This is an example .env file.
3+
#
4+
# All of these environment vars must be defined either in your environment or in
5+
# a local .env file in order to run the demo for this project.
6+
# ------------------------------------------------------------------------------
7+
8+
# -----------------------------------------------------------------------------
9+
# ChatGPT
10+
# -----------------------------------------------------------------------------
11+
12+
# see the readme for how to find this
13+
SESSION_TOKEN=

.gitignore

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
# See https://help.github.com/ignore-files/ for more about ignoring files.
3+
4+
# dependencies
5+
node_modules
6+
7+
# builds
8+
build
9+
dist
10+
.rpt2_cache
11+
12+
.dccache
13+
14+
# misc
15+
.DS_Store
16+
.env
17+
.env.local
18+
.env.development.local
19+
.env.test.local
20+
.env.production.local
21+
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*
25+
26+
*.log
27+
tests_output
28+
29+
example/src/consts.js

0 commit comments

Comments
 (0)