Skip to content

Commit 014b030

Browse files
committedSep 12, 2023
chore: merge dev
2 parents 2059e07 + 47dd013 commit 014b030

27 files changed

+6454
-16
lines changed
 

‎.cargo/config.toml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[alias]
2+
xtask = "run --package xtask --"
+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
name: Bug report
3+
about: Create a bug report for one of the supabase repos or examples.
4+
labels: bug
5+
---
6+
7+
# Bug report
8+
9+
<!--
10+
11+
⚠️ We receive a lot of bug reports which have already been solved or discussed. If you are looking for help, please try these first:
12+
13+
- Docs: https://docs.supabase.com
14+
- Discussions: https://github.com/supabase/supabase/discussions
15+
- Discord: https://discord.supabase.com
16+
17+
Before opening a bug report, please verify the following:
18+
19+
-->
20+
21+
- [ ] I confirm this is a bug with Supabase, not with my own application.
22+
- [ ] I confirm I have searched the [Docs](https://docs.supabase.com), GitHub [Discussions](https://github.com/supabase/supabase/discussions), and [Discord](https://discord.supabase.com).
23+
24+
## Describe the bug
25+
26+
A clear and concise description of what the bug is.
27+
28+
## To Reproduce
29+
30+
Steps to reproduce the behavior, please provide code snippets or a repository:
31+
32+
1. Go to '…'
33+
2. Click on '…'
34+
3. Scroll down to '…'
35+
4. See error
36+
37+
## Expected behavior
38+
39+
A clear and concise description of what you expected to happen.
40+
41+
## Screenshots
42+
43+
If applicable, add screenshots to help explain your problem.
44+
45+
## System information
46+
47+
- OS: [e.g. macOS, Windows]
48+
- Browser (if applies) [e.g. chrome, safari]
49+
- Version of supabase-js: [e.g. 6.0.2]
50+
- Version of Node.js: [e.g. 10.10.0]
51+
52+
## Additional context
53+
54+
Add any other context about the problem here.
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Improve documentation
3+
about: Suggest an improvement to our documentation
4+
labels: documentation
5+
---
6+
7+
# Improve documentation
8+
9+
## Link
10+
11+
Add a link to the page which needs improvement (if relevant)
12+
13+
## Describe the problem
14+
15+
Is the documentation missing? Or is it confusing? Why is it confusing?
16+
17+
## Describe the improvement
18+
19+
A clear and concise description of the improvement.
20+
21+
## Additional context
22+
23+
Add any other context or screenshots that help clarify your question.
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: Create a chore
3+
about: Changes to build processes, tools, refactors.
4+
labels: chore
5+
---
6+
7+
# Chore
8+
9+
## Describe the chore
10+
11+
A clear and concise description of what the chore is.
12+
13+
## Additional context
14+
15+
Add any other context or screenshots that help clarify the task.

‎.github/ISSUE_TEMPLATE/config.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Feature request
4+
url: https://github.com/supabase/postgres_lsp/discussions/categories/ideas
5+
about: Request a new feature or example.
6+
- name: Ask a question
7+
url: https://github.com/supabase/postgres_lsp/discussions/categories/q-a
8+
about: Ask questions and discuss with other community members.
9+
- name: Want to work with us?
10+
url: https://supabase.io/humans.txt
11+
about: Want to work with us? Get in touch!

‎.gitignore

+3-5
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
debug/
44
target/
55

6-
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
7-
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
8-
Cargo.lock
9-
106
# These are backup files generated by rustfmt
117
**/*.rs.bk
128

@@ -18,4 +14,6 @@ Cargo.lock
1814

1915
/target
2016

21-
**/.DS_Store
17+
# File system
18+
.DS_Store
19+
desktop.ini

0 commit comments

Comments
 (0)