DanilaKopitayko commited on
Commit
8154037
·
1 Parent(s): a35600a

Environment file, CONTRIBUTING files added

Browse files
Files changed (3) hide show
  1. .env.example +12 -0
  2. .gitignore +1 -1
  3. CONTRIBUTING.md +27 -0
.env.example ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Supabase Configuration
2
+ NEXT_PUBLIC_SUPABASE_URL=insert-your-supabase-URL
3
+ NEXT_PUBLIC_SUPABASE_ANON_KEY=insert-your-supabase-anon-key
4
+
5
+ # OpenAI Configuration
6
+ OPENAI_API_KEY=insert-your-API-key
7
+
8
+ # Azure OpenAI Configuration (if using Azure)
9
+ # AZURE_OPENAI_API_KEY=your_azure_openai_api_key_here
10
+ # AZURE_OPENAI_ENDPOINT=your_azure_openai_endpoint_here
11
+ # AZURE_OPENAI_DEPLOYMENT_NAME=your_deployment_name_here
12
+ # AZURE_OPENAI_API_VERSION=2024-02-15-preview
.gitignore CHANGED
@@ -17,7 +17,7 @@ yarn-error.log*
17
  .pnpm-debug.log*
18
 
19
  # env files
20
- .env*
21
 
22
  # vercel
23
  .vercel
 
17
  .pnpm-debug.log*
18
 
19
  # env files
20
+ # .env*
21
 
22
  # vercel
23
  .vercel
CONTRIBUTING.md ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Contributing guidelines
2
+ Thank you for your contribution to the project! Any kind of feedback is greatly welcome.
3
+
4
+ ## Reporting bugs/Feature requests
5
+
6
+ For reporting bugs, please, visit the [Issue](https://github.com/NexDatawork/data-agents/issues/new?template=bug_report.yml) page and for suggesting features visit the [Feature requests](https://github.com/NexDatawork/data-agents/issues/new?template=feature_request.yml) page.
7
+
8
+
9
+ ### Before filing an issue, please check if there are already similar issues tracked.
10
+
11
+ For currently tracked bugs check the [bug report](https://github.com/NexDatawork/data-agents/issues) page.
12
+
13
+ For requested enhancements see the [feature requests](https://github.com/NexDatawork/data-agents/issues?q=is%3Aissue%20state%3Aopen%20label%3Aenhancement) page.
14
+
15
+
16
+ When filing an issue please include as much information as possible:
17
+
18
+ * A reproducible test case or a series of steps
19
+ * The version of the code used (commit ID)
20
+ * Any modifications made, that are relevant to the bug
21
+ * Anything about your environment or deployment
22
+
23
+ ## Prerequisites
24
+
25
+ ## Getting started
26
+
27
+