-
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.
Merge pull request #7 from teambebop6/feature/2024Jun
Feature/2024 jun
- Loading branch information
Showing
14 changed files
with
176 additions
and
42 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,32 @@ | ||
# Local | ||
|
||
## DB | ||
|
||
- download h2 https://www.h2database.com/html/download.html | ||
|
||
> Version 2.1.214 | ||
- Run h2 in local, use jdbc url: | ||
|
||
``` | ||
jdbc:h2:{REAL_LOCATION}/largierj/db | ||
``` | ||
- use username sa and password password | ||
- Run schema.sql and data.sql | ||
- Disconnect H2 console | ||
## Spring | ||
- Set environment parameter in run configuration | ||
``` | ||
SPRING_PROFILES_ACTIVE=dev | ||
``` | ||
- Run LargierJApplication with param: | ||
``` | ||
-Dspring.config.additional-location={REAL_LOCATION}/largierj/largier-server/src/main/resources/application-dev.yml -Dspring.profiles.active=dev | ||
``` |
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,51 @@ | ||
import React from 'react'; | ||
import { Link } from 'react-router-dom'; | ||
import { Grid, ListItem, ListIcon, ListContent, List } from 'semantic-ui-react'; | ||
import { I18n } from 'react-i18next'; | ||
|
||
import { licenseYear } from '../../../config.json'; | ||
|
||
export default () => ( | ||
( | ||
<div> | ||
<Grid className="page default-grid impressumSection" id="impressumAnchor"> | ||
<List> | ||
<ListItem> | ||
<ListContent><I18n>{t => t('contact')}</I18n></ListContent> | ||
</ListItem> | ||
<ListItem> | ||
<ListContent /> | ||
</ListItem> | ||
<ListItem> | ||
<ListIcon name="user" /> | ||
<ListContent>Chantal Largier</ListContent> | ||
</ListItem> | ||
<ListItem> | ||
<ListIcon name="marker" /> | ||
<ListContent>Bahnhofplatz 12</ListContent> | ||
</ListItem> | ||
<ListItem> | ||
<ListIcon /> | ||
<ListContent>6440 Brunnen</ListContent> | ||
</ListItem> | ||
<ListItem> | ||
<ListIcon name="mail" /> | ||
<ListContent> | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
</ListContent> | ||
</ListItem> | ||
</List> | ||
</Grid> | ||
<Grid className="page default-grid"> | ||
<Grid.Row> | ||
<Grid.Column textAlign="center"> | ||
<p> | ||
<span>©{licenseYear} chantallargier.com | </span> | ||
<Link to="/admin" className="link">admin</Link> | ||
</p> | ||
</Grid.Column> | ||
</Grid.Row> | ||
</Grid> | ||
</div> | ||
) | ||
); |
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,3 +1,3 @@ | ||
{ | ||
"licenseYear": 2022 | ||
"licenseYear": 2024 | ||
} |
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
2 changes: 1 addition & 1 deletion
2
largier-server/src/main/resources/static/static/js/main.dbe5632a.js.map
Large diffs are not rendered by default.
Oops, something went wrong.