Skip to content

Commit c19a70c

Browse files
committed
feat: add and turn on env
meta: development
1 parent 6725566 commit c19a70c

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

.env

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
REACT_APP_APP_NAME=CloneReact
2+
REACT_APP_ENV=example
3+
REACT_APP_APP_URL=http://localhost:3000
4+
5+
REACT_APP_API_KEY=test-key
6+
REACT_APP_BACKEND_URL=http://localhost:8080
7+
8+
REACT_APP_LOG_LEVEL=
9+
10+
REACT_APP_LOGO_LINK='https://point.md/static/svg/new-point-logo.svg'
11+
12+
REACT_APP_DB_CONNECTION=
13+
REACT_APP_DB_HOST=
14+
REACT_APP_DB_PORT=
15+
REACT_APP_DB_DATABASE=
16+
REACT_APP_DB_USERNAME=
17+
REACT_APP_DB_PASSWORD=

src/components/AppLayout/AppLayout.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,20 @@ import React from 'react';
22
import { Outlet, Link } from 'react-router-dom';
33

44
import { AppStyled, MainLogoStyled } from './styled';
5+
import { LOGO_URL } from '@constants/index';
56

67

78
export const AppLayout: React.FC<{
89
children: React.ReactElement | null;
910
}> = ({ children }): JSX.Element => {
11+
12+
const logoLink = process.env.REACT_APP_LOGO_LINK || LOGO_URL;
13+
1014
return (
1115
<>
1216
<AppStyled>
1317
<Link to="/">
14-
<MainLogoStyled src='https://point.md/static/svg/new-point-logo.svg' alt='Point logo' />
18+
<MainLogoStyled src={logoLink} alt='Point logo' />
1519
</Link>
1620
<Outlet />
1721
{children}

src/constants/constants.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export const NEWS_IMAGE_URL = `https://i.simpalsmedia.com/point.md/news/370x194/`;
22
export const NEWS_BIG_IMAGE_URL = `https://i.simpalsmedia.com/point.md/news/900x900/`;
3-
3+
export const LOGO_URL = `https://point.md/static/svg/new-point-logo.svg`;

src/constants/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { NEWS_IMAGE_URL, NEWS_BIG_IMAGE_URL } from './constants';
1+
export { NEWS_IMAGE_URL, NEWS_BIG_IMAGE_URL, LOGO_URL } from './constants';

0 commit comments

Comments
 (0)