-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feature: Api Server * Add frontend * Release 4.10.0-dev.16 * Handle static file properly * Release 4.10.0-dev.17 * Fix handle static files properly * Release 4.10.0-dev.18 * Code review; Use Suspense * Load lazy properly * Improve lazy loading * Release 4.10.0-dev.19 * Release 4.10.0-dev.19 * Validate jwt token expiration * Performance improvements; Remove axios * Release 4.10.0-dev.21 * Guild APIs progress * reformat code * Progress on guild details page * Improve lazy loading * Guild features summary * Proper cors handling; Extend Guild details page * Release 4.10.0-dev.22 * Implement pagination * Release 4.10.0-dev.23 * format * Code review * Release 4.10.0-dev.24 * Release 4.10.0-dev.25 * Fix pagination * Reqquire Jwt * Release 4.10.0-dev.26 * Fetch user avatar and username * Trailing new lines * Add api call response cache * Add eslint? * Release 4.10.0-dev.27 * Add rate limiter * Add cli; Add guild reminder endpoint; Refactor code * Implement reminders panel * Release 4.10.0-dev.28 * Add FeatureData element * Allow server admins access their server dashboard * Refactor protected elements handlingg * Form Dialog * Add loading state * Rework filters
- Loading branch information
Showing
65 changed files
with
20,580 additions
and
589 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 |
---|---|---|
|
@@ -19,3 +19,5 @@ build/ | |
.idea/ | ||
|
||
lib_old/ | ||
|
||
**/node_modules/** |
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 |
---|---|---|
|
@@ -39,10 +39,14 @@ jobs: | |
context: . | ||
target: prod | ||
push: true | ||
build-args: | | ||
REACT_APP_CLIENT_ID=${{ secrets.REACT_APP_CLIENT_ID }} | ||
REACT_APP_REDIRECT_URL=${{ secrets.REACT_APP_REDIRECT_URL }} | ||
REACT_APP_API_SERVER=${{ secrets.REACT_APP_API_SERVER }} | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
|
||
- name: Redeploy portainer | ||
uses: muinmomin/[email protected] | ||
with: | ||
url: ${{ secrets.ROD_PORTAINER_WEBHOOK }} | ||
url: ${{ secrets.ROD_PORTAINER_WEBHOOK }} |
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 |
---|---|---|
|
@@ -22,3 +22,6 @@ doc/api/ | |
*.db | ||
|
||
sessions/ | ||
|
||
public/ | ||
!public/.gitkeep |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
.idea/ | ||
*.iml | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* |
Oops, something went wrong.