-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #847 from supertokens/feat/oauth
Add OAuth docs
- Loading branch information
Showing
253 changed files
with
7,313 additions
and
1,815 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 |
---|---|---|
|
@@ -2,7 +2,6 @@ version: 2.1 | |
orbs: | ||
node: circleci/[email protected] | ||
slack: circleci/[email protected] | ||
|
||
jobs: | ||
deploy-to-test-site: | ||
docker: | ||
|
@@ -11,7 +10,7 @@ jobs: | |
steps: | ||
- checkout | ||
- node/install-packages: | ||
app-dir: '~/project/v2' | ||
app-dir: "~/project/v2" | ||
- run: cd ../ && git clone [email protected]:supertokens/supertokens-backend-website.git | ||
- run: apt-get update | ||
- run: apt -y --fix-broken install | ||
|
@@ -26,27 +25,27 @@ jobs: | |
steps: | ||
- checkout | ||
- node/install-packages: | ||
app-dir: '~/project/v2' | ||
app-dir: "~/project/v2" | ||
- run: | ||
name: Setup iOS env | ||
command: cd v2/src/plugins/codeTypeChecking/iosEnv/ && pod install | ||
no_output_timeout: 30m | ||
- run: nvm install 16 -y | ||
- run: | ||
- run: | ||
no_output_timeout: 30m | ||
name: Run build for iOS docs | ||
command: nvm use 16 && cd v2 && npm run build:ios | ||
- slack/status | ||
code-checking: | ||
environment: | ||
TAR_OPTIONS: --no-same-owner | ||
TAR_OPTIONS: --no-same-owner | ||
docker: | ||
- image: rishabhpoddar/supertokens_docs_building_with_android | ||
resource_class: xlarge | ||
steps: | ||
- checkout | ||
- node/install-packages: | ||
app-dir: '~/project/v2' | ||
app-dir: "~/project/v2" | ||
- run: cd ../ && git clone https://github.com/flutter/flutter.git | ||
- run: cd ../ && export PATH="$PATH:/root/flutter/bin" && echo $PATH | ||
- run: cd ../ && export PATH="$PATH:/root/flutter/bin" && flutter doctor && chown -R root:root /root/flutter | ||
|
@@ -69,6 +68,26 @@ jobs: | |
name: Setup Dart Env | ||
command: cd v2/src/plugins/codeTypeChecking/dart_env && export PATH="$PATH:/root/flutter/bin" && flutter pub get | ||
no_output_timeout: 30m | ||
- run: | ||
name: Install Java | ||
command: | | ||
apt-get update | ||
apt-get install -y openjdk-11-jdk | ||
wget https://archive.apache.org/dist/maven/maven-3/3.8.4/binaries/apache-maven-3.8.4-bin.tar.gz | ||
tar xzf apache-maven-3.8.4-bin.tar.gz | ||
mv apache-maven-3.8.4 /opt/maven | ||
echo 'export PATH=/opt/maven/bin:$PATH' >> $BASH_ENV | ||
source $BASH_ENV | ||
- run: | ||
name: Install .NET | ||
command: | | ||
wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb | ||
dpkg -i packages-microsoft-prod.deb | ||
rm packages-microsoft-prod.deb | ||
apt-get update | ||
apt-get install -y apt-transport-https | ||
apt-get update | ||
apt-get install -y dotnet-sdk-6.0 | ||
- run: | ||
command: export PATH="$PATH:/root/flutter/bin" && cd v2 && npm run build | ||
no_output_timeout: 30m | ||
|
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
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
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,9 @@ | ||
import CustomAdmonition from "/src/components/customAdmonition" | ||
|
||
<CustomAdmonition type="paid-feature"> | ||
|
||
This is a paid feature. | ||
|
||
You can click on the **Enable Paid Features** button on [our dashboard](https://supertokens.com/dashboard-saas), and follow the steps from there on. Once enabled, this feature is free on the provided development environment. | ||
|
||
</CustomAdmonition> |
Empty file.
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.