-
Notifications
You must be signed in to change notification settings - Fork 15
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 #6 from karpolan/dev
Release 0.1.5
- Loading branch information
Showing
16 changed files
with
79 additions
and
58 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 |
---|---|---|
@@ -1,14 +1,30 @@ | ||
# Minimum level of visible Logs | ||
# Environment similar to NODE_ENV. | ||
# Analytics and public resources are enabled only in "production" | ||
# How to use: set value to "production" to get fully functional application. | ||
NEXT_PUBLIC_ENV = development | ||
# NEXT_PUBLIC_ENV = preview | ||
# NEXT_PUBLIC_ENV = production | ||
|
||
# Enables additional debug features, no additional debug information if the variable is not set | ||
# How to use: set value to "true" to get more debugging information, but don't do it on production. | ||
NEXT_PUBLIC_DEBUG = true | ||
|
||
# Minimum level of visible Logs | ||
NEXT_PUBLIC_LOG_LEVEL = DEBUG | ||
# NEXT_PUBLIC_LOG_LEVEL = ERROR | ||
# Public URL of the application/website. | ||
# How to use: Do not set any value until you need custom domain for your application. | ||
# NEXT_PUBLIC_PUBLIC_URL = https://xxx.com | ||
# NEXT_PUBLIC_PUBLIC_URL = https://xxx.web.app | ||
NEXT_PUBLIC_PUBLIC_URL = http://localhost:3000 | ||
|
||
|
||
# API/Backend basic URL | ||
NEXT_PUBLIC_API_URL = http://localhost:3030 | ||
NEXT_PUBLIC_API_URL = http://localhost:5000 | ||
# NEXT_PUBLIC_API_URL = https://dev-api.domain.com | ||
# NEXT_PUBLIC_API_URL = https://api.domain.com | ||
|
||
# Other settings | ||
NEXT_PUBLIC_GOOGLE_API_CLIENT_ID = _YOUR_CLIENT_ID_HERE_ | ||
# EmailJS configuration for contact form | ||
NEXT_PUBLIC_EMAILJS_KEY = user-xxxx | ||
|
||
# Analytics and Advertising | ||
NEXT_PUBLIC_GA_ID = G-... | ||
NEXT_PUBLIC_AMPLITUDE_API_KEY = 69abf7... | ||
NEXT_PUBLIC_ADSENSE_CLIENT_ID = pub-12345... |
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,3 +1,6 @@ | ||
{ | ||
"extends": "next/core-web-vitals" | ||
"extends": "next/core-web-vitals", | ||
"rules": { | ||
"import/no-cycle": "error" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,11 @@ | ||
import { SVGAttributes } from 'react'; | ||
|
||
/** | ||
* Props to use with custom SVG icons, similar to AppIcon's Props | ||
*/ | ||
export interface IconProps extends SVGAttributes<SVGElement> { | ||
color?: string; | ||
icon?: string; | ||
size?: string | number; | ||
title?: string; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/** | ||
* Data structure of the AppStore state | ||
*/ | ||
export interface AppStoreState { | ||
darkMode: boolean; | ||
isAuthenticated: boolean; | ||
currentUser?: object | undefined; | ||
} | ||
|
||
/** | ||
* Initial values for the AppStore state | ||
*/ | ||
export const APP_STORE_INITIAL_STATE: AppStoreState = { | ||
darkMode: false, // Overridden by useMediaQuery('(prefers-color-scheme: dark)') in AppStore | ||
isAuthenticated: false, // Overridden in AppStore by checking auth token | ||
}; |
This file was deleted.
Oops, something went wrong.