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
<!DOCTYPE html> | |
<html> | |
<head> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
<script src="js/script.js"></script> | |
</head> | |
<body> | |
<div id="main"></div> | |
</body> | |
</html> |
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
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) |
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
Verifying my Blockstack ID is secured with the address 12p86jHcqTK8LUW6hx5W6SdjE67KoW3rSw https://explorer.blockstack.org/address/12p86jHcqTK8LUW6hx5W6SdjE67KoW3rSw |
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
version: "3.7" | |
services: | |
next-strapi-cloud-run-mysql: | |
image: mysql:5.7 | |
container_name: next-strapi-cloud-run-mysql | |
environment: | |
MYSQL_ROOT_PASSWORD: password | |
MYSQL_DATABASE: cms | |
ports: | |
- "3308:3306" |
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
module.exports = ({ env }) => ({ | |
defaultConnection: 'default', | |
connections: { | |
default: { | |
connector: 'bookshelf', | |
settings: { | |
client: 'mysql', | |
database: env('DB_NAME'), | |
host: env('DB_HOST'), | |
port: env.int('DB_PORT'), |
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
version: "3.7" | |
services: | |
next-strapi-cloud-run-mysql: | |
image: mysql:5.7 | |
container_name: next-strapi-cloud-run-mysql | |
environment: | |
MYSQL_ROOT_PASSWORD: password | |
MYSQL_DATABASE: cms | |
ports: | |
- "3308:3306" |
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
version: "3.7" | |
services: | |
next-strapi-cloud-run-mysql: | |
image: mysql:5.7 | |
container_name: next-strapi-cloud-run-mysql | |
environment: | |
MYSQL_ROOT_PASSWORD: password | |
MYSQL_DATABASE: cms | |
ports: | |
- "3308:3306" |
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
module.exports = { | |
env: { | |
CMS_GRAPHQL_URL: process.env.CMS_GRAPHQL_URL, | |
}, | |
} |
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
import { request, gql } from 'graphql-request' | |
export const getStaticProps = async () => { | |
const query = gql` | |
{ | |
test { | |
title | |
} | |
} | |
`; |
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
variable "gcp_project_name" { | |
type = string | |
description = "Name of the Google Cloud Platform Project to be created." | |
default = "next-strapi-cloud-run" | |
} | |
variable "gcp_region" { | |
type = string | |
description = "Google Cloud Region that the project should be created within" | |
default = "europe-west1" |
OlderNewer