This file contains hidden or 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 is the main configuration file for the application. | |
# https://www.playframework.com/documentation/latest/ConfigFile | |
play.filters.enabled += "play.filters.cors.CORSFilter" | |
cors{ | |
allowedOrigins = ["http://localhost:8100"] | |
} |
This file contains hidden or 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 is the main configuration file for the application. | |
# https://www.playframework.com/documentation/latest/ConfigFile | |
play.filters.enabled += "play.filters.cors.CORSFilter" | |
cors{ | |
allowedOrigins = ["http://localhost:8100"] | |
} |
This file contains hidden or 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 is the main configuration file for the application. | |
# https://www.playframework.com/documentation/latest/ConfigFile | |
play.filters.enabled += "play.filters.cors.CORSFilter" | |
cors{ | |
allowedOrigins = ["http://localhost:8100"] | |
} |
This file contains hidden or 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 is the main configuration file for the application. | |
# https://www.playframework.com/documentation/latest/ConfigFile | |
play.filters.enabled += "play.filters.cors.CORSFilter" | |
cors{ | |
allowedOrigins = ["http://localhost:8100"] | |
} |
This file contains hidden or 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
package controllers; | |
import com.fasterxml.jackson.databind.JsonNode; | |
import play.libs.Json; | |
import play.mvc.Controller; | |
import play.mvc.Result; | |
public class HomeController extends Controller{ |
This file contains hidden or 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
# Routes | |
# This file defines all application routes (Higher priority routes first) | |
# ~~~~ | |
# An example controller showing a sample home page | |
GET / controllers.HomeController.index | |
#GET /explore controllers.HomeController.explore | |
#GET /tutorial controllers.HomeController.tutorial | |
This file contains hidden or 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
<ion-header> | |
<ion-toolbar> | |
<ion-title> | |
Ionic Blank | |
</ion-title> | |
</ion-toolbar> | |
</ion-header> | |
<ion-content> | |
<form> |
This file contains hidden or 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
import { Component } from '@angular/core'; | |
import {HttpClient} from '@angular/common/http'; | |
@Component({ | |
selector: 'app-home', | |
templateUrl: 'home.page.html', | |
styleUrls: ['home.page.scss'], | |
}) | |
export class HomePage { |
This file contains hidden or 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
[Unit] | |
Description=Jboss Application Server | |
After=network.target | |
[Service] | |
Type=idle | |
User=root | |
Group=root | |
ExecStart=/opt/keycloak/bin/standalone.sh -b 0.0.0.0 | |
TimeoutStartSec=600 |
This file contains hidden or 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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"logs:CreateLogGroup", | |
"logs:CreateLogStream", | |
"logs:PutLogEvents" | |
], |
OlderNewer