Skip to content

Commit d885b54

Browse files
author
admin
committedApr 3, 2021
initial commit
0 parents  commit d885b54

Some content is hidden

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

50 files changed

+1388
-0
lines changed
 

‎.env.local.example

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
WORDPRESS_API_URL=
2+
3+
# Only required if you want to enable preview mode
4+
# WORDPRESS_AUTH_REFRESH_TOKEN=
5+
# WORDPRESS_PREVIEW_SECRET=

‎.gitignore

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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
10+
11+
# next.js
12+
/.next/
13+
/out/
14+
15+
# production
16+
/build
17+
18+
# misc
19+
.DS_Store
20+
*.pem
21+
22+
# debug
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
27+
# local env files
28+
.env.local
29+
.env.development.local
30+
.env.test.local
31+
.env.production.local
32+
33+
# vercel
34+
.vercel

0 commit comments

Comments
 (0)
Please sign in to comment.