forked from oxen-io/websites
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add readme docs to all packages and apps
- Loading branch information
Showing
13 changed files
with
166 additions
and
15 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
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,8 @@ | ||
# @session/auth | ||
|
||
This package is a collection of utilities for handling third-party authentication | ||
using [NextAuth.js](https://next-auth.js.org/) | ||
|
||
## Getting Started | ||
|
||
You can follow the generic instructions in the root [README.md](../../README.md#getting-started) to get started. |
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,24 @@ | ||
# @session/contracts | ||
|
||
This package is a Session smart contract js library for interacting with the Session smart | ||
contracts. The smart contracts can be found in the [ | ||
eth-sn-contracts](https://github.com/oxen-io/eth-sn-contracts/) repository. | ||
|
||
## Getting Started | ||
|
||
You can follow the generic instructions in the root [README.md](../../README.md#getting-started) to get started. | ||
|
||
## Development | ||
|
||
The smart contracts can be found in the [eth-sn-contracts](https://github.com/oxen-io/eth-sn-contracts/) repository. | ||
Their ABIs can be found in the `abi` directory. | ||
|
||
### Updating the ABIs | ||
|
||
To update the ABIs, run the following command: | ||
|
||
```shell | ||
pnpm generate | ||
``` | ||
|
||
This will update the ABIs in the `abi` directory. |
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,3 @@ | ||
# @session/eslint-config | ||
|
||
This package is a collection of `eslint` configurations for the Session Web Ecosystem. |
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,8 @@ | ||
# @session/feature-flags | ||
|
||
This package is a feature flags library for [Next.js](https://nextjs.org/) apps. Supporting client, server, and | ||
remote flags. | ||
|
||
## Getting Started | ||
|
||
You can follow the generic instructions in the root [README.md](../../README.md#getting-started) to get started. |
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,8 @@ | ||
# @session/logger | ||
|
||
This package is an opinionated logging wrapper. It provides a consistent logging interface for the Session Web | ||
Ecosystem. | ||
|
||
## Getting Started | ||
|
||
You can follow the generic instructions in the root [README.md](../../README.md#getting-started) to get started. |
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 @@ | ||
# @session/sent-staking-js | ||
|
||
This package is a js library for interacting with the Session Token staking | ||
backend. The backend can be found in | ||
the [Session Token Staking Backend](https://github.com/oxen-io/sent-staking-backend/) repository. | ||
|
||
## Getting Started | ||
|
||
You can follow the generic instructions in the root [README.md](../../README.md#getting-started) to get started. |
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,7 @@ | ||
# @session/testing | ||
|
||
This package is a testing utility library. It provides a type interface for consistent data test ids. | ||
|
||
## Getting Started | ||
|
||
You can follow the generic instructions in the root [README.md](../../README.md#getting-started) to get started. |
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,4 @@ | ||
# @session/typescript-config | ||
|
||
This package is a collection of `tsconfig.json` configurations for the Session Web Ecosystem. | ||
|
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,23 @@ | ||
# @session/ui | ||
|
||
This package contains the shared UI components for the Session Web Ecosystem. The UI component library is a collection | ||
of UI components for [Next.js](https://nextjs.org/) apps | ||
and uses | ||
[Tailwind CSS](https://tailwindcss.com/), [Radix UI](https://www.radix-ui.com/), | ||
and [Shadcn/ui](https://ui.shadcn.com/). | ||
|
||
## Getting Started | ||
|
||
You can follow the generic instructions in the root [README.md](../../README.md#getting-started) to get started. | ||
|
||
## Development | ||
|
||
We generate all base UI components using [Shadcn/ui](https://ui.shadcn.com/). | ||
|
||
### Adding a new base UI component | ||
|
||
You can use the following command to add a new [Shadcn/ui](https://ui.shadcn.com/) component: | ||
|
||
```shell | ||
pnpm ui:add <COMPONENT_NAME> | ||
``` |
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,7 @@ | ||
# @session/util | ||
|
||
This package is a utility library for common functions. | ||
|
||
## Getting Started | ||
|
||
You can follow the generic instructions in the root [README.md](../../README.md#getting-started) to get started. |
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,7 @@ | ||
# @session/wallet | ||
|
||
This package is a wallet library for interacting with the Session Token. | ||
|
||
## Getting Started | ||
|
||
You can follow the generic instructions in the root [README.md](../../README.md#getting-started) to get started. |