Skip to content

Commit 297d661

Browse files
committedJul 24, 2024
first commit
0 parents  commit 297d661

File tree

311 files changed

+40013
-0
lines changed

Some content is hidden

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

311 files changed

+40013
-0
lines changed
 

‎.env.example

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Since .env is gitignored, you can use .env.example to build a new `.env` file when you clone the repo.
2+
# Keep this file up-to-date when you add new variables to \`.env\`.
3+
4+
# This file will be committed to version control, so make sure not to have any secrets in it.
5+
# If you are cloning this repo, create a copy of this file named `.env` and populate it with your secrets.
6+
7+
# AWS
8+
AWS_PROFILE="default"
9+
AWS_REGION="us-east-1"
10+
11+
# Clerk
12+
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=
13+
CLERK_SECRET_KEY=
14+
CLERK_JWT_KEY="-----BEGIN PUBLIC KEY-----
15+
...
16+
-----END PUBLIC KEY-----
17+
"
18+
NEXT_PUBLIC_CLERK_SIGN_IN_URL=/signin
19+
NEXT_PUBLIC_CLERK_SIGN_UP_URL=/signup
20+
21+
# FastAPI
22+
NEXT_PUBLIC_FASTAPI_URL="http://127.0.0.1:8000"
23+
24+
# Config
25+
PORT="3000"
26+
NEXT_PUBLIC_ROOT_DOMAIN="getwellchart.com"
27+
NEXT_PUBLIC_SITE_URL="https://getwellchart.com"

‎.github/DISCUSSION_TEMPLATE/ideas.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
body:
2+
- type: markdown
3+
attributes:
4+
value: |
5+
Thank you for taking the time to file a feature request. Please fill out this form as completely as possible.
6+
- type: textarea
7+
attributes:
8+
label: Describe the feature you'd like to request
9+
description: Please describe the feature as clear and concise as possible. Remember to add context as to why you believe this feature is needed.
10+
validations:
11+
required: true
12+
- type: textarea
13+
attributes:
14+
label: Describe the solution you'd like to see
15+
description: Please describe the solution you would like to see. Adding example usage is a good way to provide context.
16+
validations:
17+
required: true
18+
- type: textarea
19+
attributes:
20+
label: Additional information
21+
description: Add any other information related to the feature here. If your feature request is related to any issues or discussions, link them here.

0 commit comments

Comments
 (0)
Failed to load comments.