forked from saasfly/saasfly
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
tianzx
committed
Mar 26, 2024
0 parents
commit 868398e
Showing
243 changed files
with
14,609 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# ----------------------------------------------------------------------------- | ||
# App | ||
# ----------------------------------------------------------------------------- | ||
NEXT_PUBLIC_APP_URL='localhost:3000' | ||
# ----------------------------------------------------------------------------- | ||
# Authentication (NextAuth.js) | ||
# openssl rand -base64 32 | ||
# ----------------------------------------------------------------------------- | ||
NEXTAUTH_URL='localhost:3000' | ||
NEXTAUTH_SECRET='1' | ||
|
||
GITHUB_CLIENT_ID='1' | ||
GITHUB_CLIENT_SECRET='1' | ||
|
||
# ----------------------------------------------------------------------------- | ||
# Email (RESEND) | ||
# ----------------------------------------------------------------------------- | ||
RESEND_API_KEY='1' | ||
RESEND_FROM='1' | ||
|
||
# ----------------------------------------------------------------------------- | ||
# Subscriptions (Stripe) | ||
# ----------------------------------------------------------------------------- | ||
# Stripe | ||
STRIPE_API_KEY="1" | ||
STRIPE_WEBHOOK_SECRET="1" | ||
NEXT_PUBLIC_STRIPE_STD_PRODUCT_ID="prod_" | ||
NEXT_PUBLIC_STRIPE_STD_MONTHLY_PRICE_ID="price_" | ||
NEXT_PUBLIC_STRIPE_PRO_PRODUCT_ID="prod_" | ||
NEXT_PUBLIC_STRIPE_PRO_MONTHLY_PRICE_ID="price_" | ||
|
||
NEXT_PUBLIC_STRIPE_PRO_PRODUCT_ID="prod_" | ||
NEXT_PUBLIC_STRIPE_PRO_MONTHLY_PRICE_ID="price_" | ||
NEXT_PUBLIC_STRIPE_PRO_YEARLY_PRICE_ID="price_" | ||
NEXT_PUBLIC_STRIPE_BUSINESS_PRODUCT_ID="prod_" | ||
NEXT_PUBLIC_STRIPE_BUSINESS_MONTHLY_PRICE_ID="price_" | ||
NEXT_PUBLIC_STRIPE_BUSINESS_YEARLY_PRICE_ID="price_" | ||
|
||
#posthog | ||
NEXT_PUBLIC_POSTHOG_KEY=" " | ||
NEXT_PUBLIC_POSTHOG_HOST=https://app.posthog.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: CI | ||
|
||
on: | ||
pull_request: | ||
branches: [ "*" ] | ||
push: | ||
branches: [ "main" ] | ||
merge_group: | ||
|
||
# You can leverage Vercel Remote Caching with Turbo to speed up your builds | ||
# @link https://turborepo.org/docs/core-concepts/remote-caching#remote-caching-on-vercel-builds | ||
# env: | ||
# TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | ||
# TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | ||
|
||
jobs: | ||
build-lint: | ||
runs-on: ubuntu-latest | ||
|
||
services: | ||
postgres: | ||
image: postgres:16.1 | ||
env: | ||
POSTGRES_USER: default | ||
POSTGRES_PASSWORD: default | ||
POSTGRES_DB: verceldb | ||
ports: | ||
- 5432:5432 | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Copy env | ||
shell: bash | ||
run: cp .env.example .env.local | ||
|
||
- name: Setup bun | ||
uses: oven-sh/setup-bun@v1 | ||
|
||
- name: Install lib | ||
run: bun i | ||
|
||
- name: Build | ||
run: bun run build | ||
env: | ||
# The hostname used to communicate with the PostgreSQL service container | ||
POSTGRES_HOST: postgres | ||
# The default PostgreSQL port | ||
POSTGRES_PORT: 5432 | ||
POSTGRES_USER: default | ||
POSTGRES_PASSWORD: default | ||
POSTGRES_DB: verceldb | ||
POSTGRES_URL: postgres://default:default@localhost:5432/verceldb | ||
|
||
|
||
- name: lint and type-check | ||
run: bun run build lint format typecheck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
node_modules | ||
.pnp | ||
.pnp.js | ||
|
||
# testing | ||
coverage | ||
|
||
# next.js | ||
.next/ | ||
out/ | ||
next-env.d.ts | ||
|
||
# expo | ||
.expo/ | ||
dist/ | ||
expo-env.d.ts | ||
apps/expo/.gitignore | ||
|
||
# production | ||
build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
.pnpm-debug.log* | ||
|
||
# local env files | ||
.env.local | ||
|
||
# vercel | ||
.vercel | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
|
||
# turbo | ||
.turbo | ||
|
||
yarn.lock | ||
package-lock.json | ||
bun.lockb | ||
|
||
.idea/ | ||
|
||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
# Contributor Covenant Code of Conduct | ||
|
||
## Our Pledge | ||
|
||
We as members, contributors, and leaders pledge to make participation in our | ||
community a harassment-free experience for everyone, regardless of age, body | ||
size, visible or invisible disability, ethnicity, sex characteristics, gender | ||
identity and expression, level of experience, education, socio-economic status, | ||
nationality, personal appearance, race, religion, or sexual identity | ||
and orientation. | ||
|
||
We pledge to act and interact in ways that contribute to an open, welcoming, | ||
diverse, inclusive, and healthy community. | ||
|
||
## Our Standards | ||
|
||
Examples of behavior that contributes to a positive environment for our | ||
community include: | ||
|
||
* Demonstrating empathy and kindness toward other people | ||
* Being respectful of differing opinions, viewpoints, and experiences | ||
* Giving and gracefully accepting constructive feedback | ||
* Accepting responsibility and apologizing to those affected by our mistakes, | ||
and learning from the experience | ||
* Focusing on what is best not just for us as individuals, but for the | ||
overall community | ||
|
||
Examples of unacceptable behavior include: | ||
|
||
* The use of sexualized language or imagery, and sexual attention or | ||
advances of any kind | ||
* Trolling, insulting or derogatory comments, and personal or political attacks | ||
* Public or private harassment | ||
* Publishing others' private information, such as a physical or email | ||
address, without their explicit permission | ||
* Other conduct which could reasonably be considered inappropriate in a | ||
professional setting | ||
|
||
## Enforcement Responsibilities | ||
|
||
Community leaders are responsible for clarifying and enforcing our standards of | ||
acceptable behavior and will take appropriate and fair corrective action in | ||
response to any behavior that they deem inappropriate, threatening, offensive, | ||
or harmful. | ||
|
||
Community leaders have the right and responsibility to remove, edit, or reject | ||
comments, commits, code, wiki edits, issues, and other contributions that are | ||
not aligned to this Code of Conduct, and will communicate reasons for moderation | ||
decisions when appropriate. | ||
|
||
## Scope | ||
|
||
This Code of Conduct applies within all community spaces, and also applies when | ||
an individual is officially representing the community in public spaces. | ||
Examples of representing our community include using an official e-mail address, | ||
posting via an official social media account, or acting as an appointed | ||
representative at an online or offline event. | ||
|
||
## Enforcement | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be | ||
reported to the community leaders responsible for enforcement at | ||
contract@saasfly.io. | ||
All complaints will be reviewed and investigated promptly and fairly. | ||
|
||
All community leaders are obligated to respect the privacy and security of the | ||
reporter of any incident. | ||
|
||
## Enforcement Guidelines | ||
|
||
Community leaders will follow these Community Impact Guidelines in determining | ||
the consequences for any action they deem in violation of this Code of Conduct: | ||
|
||
### 1. Correction | ||
|
||
**Community Impact**: Use of inappropriate language or other behavior deemed | ||
unprofessional or unwelcome in the community. | ||
|
||
**Consequence**: A private, written warning from community leaders, providing | ||
clarity around the nature of the violation and an explanation of why the | ||
behavior was inappropriate. A public apology may be requested. | ||
|
||
### 2. Warning | ||
|
||
**Community Impact**: A violation through a single incident or series | ||
of actions. | ||
|
||
**Consequence**: A warning with consequences for continued behavior. No | ||
interaction with the people involved, including unsolicited interaction with | ||
those enforcing the Code of Conduct, for a specified period of time. This | ||
includes avoiding interactions in community spaces as well as external channels | ||
like social media. Violating these terms may lead to a temporary or | ||
permanent ban. | ||
|
||
### 3. Temporary Ban | ||
|
||
**Community Impact**: A serious violation of community standards, including | ||
sustained inappropriate behavior. | ||
|
||
**Consequence**: A temporary ban from any sort of interaction or public | ||
communication with the community for a specified period of time. No public or | ||
private interaction with the people involved, including unsolicited interaction | ||
with those enforcing the Code of Conduct, is allowed during this period. | ||
Violating these terms may lead to a permanent ban. | ||
|
||
### 4. Permanent Ban | ||
|
||
**Community Impact**: Demonstrating a pattern of violation of community | ||
standards, including sustained inappropriate behavior, harassment of an | ||
individual, or aggression toward or disparagement of classes of individuals. | ||
|
||
**Consequence**: A permanent ban from any sort of public interaction within | ||
the community. | ||
|
||
## Attribution | ||
|
||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], | ||
version 2.0, available at | ||
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. | ||
|
||
Community Impact Guidelines were inspired by [Mozilla's code of conduct | ||
enforcement ladder](https://github.com/mozilla/diversity). | ||
|
||
[homepage]: https://www.contributor-covenant.org | ||
|
||
For answers to common questions about this code of conduct, see the FAQ at | ||
https://www.contributor-covenant.org/faq. Translations are available at | ||
https://www.contributor-covenant.org/translations. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
## Can I create a pull request for saasfly? | ||
|
||
Yes or no, it depends on what you will try to do. Since I don't want to waste your time, be sure to **create an empty draft pull request or open an issue, so we can have a discussion first**. Especially for a large pull request or you don't know if it will be merged or not. | ||
|
||
Here are some references: | ||
|
||
### ✅ Usually accepted | ||
|
||
- Bug fix | ||
- Security fix | ||
- Adding notification providers | ||
- Adding new language keys | ||
|
||
### ⚠️ Discussion required | ||
|
||
- Large pull requests | ||
- New features | ||
|
||
### ❌ Won't be merged | ||
|
||
- Do not pass the auto-test(we dont have auto-test now) | ||
- Any breaking changes | ||
- Duplicated pull requests | ||
- Buggy | ||
- UI/UX is not close to saasfly | ||
- Modifications or deletions of existing logic without a valid reason. | ||
- Adding functions that is completely out of scope | ||
- Converting existing code into other programming languages | ||
- Unnecessarily large code changes that are hard to review and cause conflicts with other PRs. | ||
|
||
The above cases may not cover all possible situations. | ||
|
||
If your pull request does not meet my expectations, I will reject it, no matter how much time you spent on it. Therefore, it is essential to have a discussion beforehand. | ||
|
||
I will assign your pull request to a [milestone](https://github.com/saasfly/saasfly/milestones), if I plan to review and merge it. | ||
|
||
Also, please don't rush or ask for an ETA, because I have to understand the pull request, make sure it is no breaking changes and stick to my vision of this project, especially for large pull requests. | ||
|
||
### Recommended Pull Request Guideline | ||
|
||
Before deep into coding, discussion first is preferred. Creating an empty pull request for discussion would be recommended. | ||
|
||
1. Fork the project | ||
2. Clone your fork repo to local | ||
3. Create a new branch | ||
4. Create an empty commit: `git commit -m "<YOUR TASK NAME>" --allow-empty` | ||
5. Push to your fork repo | ||
6. Prepare a pull request: https://github.com/saasfly/saasfly/compare | ||
7. Write a proper description. You can mention @tianzx in it, so @tianzx will get the notification. | ||
8. Create your pull request as a Draft | ||
9. Wait for the discussion |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2024 saasfly | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
Oops, something went wrong.