-
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
Showing
18 changed files
with
176 additions
and
126 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,13 @@ | ||
# All the following variables can be found under your application/tenant settings in Auth0 | ||
|
||
# Your OIDC client | ||
OIDC_CLIENT_ID= | ||
# Your OIDC client secret | ||
OIDC_CLIENT_SECRET= | ||
# Your OIDC domain | ||
OIDC_DOMAIN= | ||
# Your OIDC audience | ||
OIDC_AUDIENCE= | ||
|
||
# Your database url | ||
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres |
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 |
---|---|---|
|
@@ -3,4 +3,5 @@ target | |
target_analyser | ||
.DS_Store | ||
.vscode | ||
**/**.DS_Store | ||
**/**.DS_Store | ||
pgdata |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,8 @@ | ||
use rave_entity::async_graphql; | ||
|
||
pub mod user; | ||
pub mod feed; | ||
|
||
pub use user::UserQuery; | ||
|
||
use self::feed::FeedQuery; | ||
|
||
// Add your other ones here to create a unified Query object | ||
// e.x. Query(NoteQuery, OtherQuery, OtherOtherQuery) | ||
// You can add other queries here to create a unified Query object | ||
// e.x. Query(FeedQuery, OtherQuery) | ||
#[derive(async_graphql::MergedObject, Default)] | ||
pub struct Query(UserQuery, FeedQuery); | ||
pub struct Query(FeedQuery); |
This file was deleted.
Oops, something went wrong.
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.