This repository was archived by the owner on May 22, 2021. It is now read-only.
-
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.
setting up FenixFramework (closes #115) (#135)
* setting up FenixFramework * update .gitignore * rename local.dev.yml * re-add example files * adding password example
- Loading branch information
1 parent
e439279
commit ae0e671
Showing
9 changed files
with
63 additions
and
9 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 |
---|---|---|
|
@@ -7,4 +7,5 @@ infer-out | |
*.iml | ||
.idea | ||
.DS_Store | ||
fenix-framework.properties | ||
fenix-framework.properties | ||
local.dev.yml |
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
4 changes: 2 additions & 2 deletions
4
activity/src/main/resources/fenix-framework.properties.example
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,7 +1,7 @@ | ||
# Copy this file to fenix-framework.properties | ||
# Copy this file to fenix-framework.properties | ||
# and replace password by your mysql root password | ||
dbAlias=//localhost:3306/adventures | ||
dbUsername=root | ||
dbPassword=password | ||
updateRepositoryStructureIfNeeded=true | ||
canCreateDomainMetaObjects=false | ||
canCreateDomainMetaObjects=false |
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,7 +1,7 @@ | ||
# Copy this file to fenix-framework.properties | ||
# Copy this file to fenix-framework.properties | ||
# and replace password by your mysql root password | ||
dbAlias=//localhost:3306/adventures | ||
dbUsername=root | ||
dbPassword=password | ||
updateRepositoryStructureIfNeeded=true | ||
canCreateDomainMetaObjects=false | ||
canCreateDomainMetaObjects=false |
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,7 +1,7 @@ | ||
# Copy this file to fenix-framework.properties | ||
# Copy this file to fenix-framework.properties | ||
# and replace password by your mysql root password | ||
dbAlias=//localhost:3306/adventures | ||
dbUsername=root | ||
dbPassword=password | ||
updateRepositoryStructureIfNeeded=true | ||
canCreateDomainMetaObjects=false | ||
canCreateDomainMetaObjects=false |
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,7 @@ | ||
# Copy this file to fenix-framework.properties | ||
# and replace password by your mysql root password | ||
dbAlias=//localhost:3306/adventures | ||
dbUsername=root | ||
dbPassword=password | ||
updateRepositoryStructureIfNeeded=true | ||
canCreateDomainMetaObjects=false |
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,7 +1,7 @@ | ||
# Copy this file to fenix-framework.properties | ||
# Copy this file to fenix-framework.properties | ||
# and replace password by your mysql root password | ||
dbAlias=//localhost:3306/adventures | ||
dbUsername=root | ||
dbPassword=password | ||
updateRepositoryStructureIfNeeded=true | ||
canCreateDomainMetaObjects=false | ||
canCreateDomainMetaObjects=false |
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,14 @@ | ||
version: '2' | ||
services: | ||
mysql: | ||
image: mysql | ||
container_name: mysql | ||
ports: | ||
- "3306:3306" | ||
volumes: | ||
- .:/code | ||
environment: | ||
- MYSQL_USER=root | ||
- MYSQL_ROOT_PASSWORD=password | ||
- MYSQL_ALLOW_EMPTY_PASSWORD='yes' | ||
- MYSQL_DATABASE=adventures |
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,7 @@ | ||
# Copy this file to fenix-framework.properties | ||
# and replace password by your mysql root password | ||
dbAlias=//localhost:3306/adventures | ||
dbUsername=root | ||
dbPassword=password | ||
updateRepositoryStructureIfNeeded=true | ||
canCreateDomainMetaObjects=false |