diff --git a/.gitignore b/.gitignore index 64dc973..baa9b47 100644 --- a/.gitignore +++ b/.gitignore @@ -1,164 +1,21 @@ -################ -## CONTENTFUL ## -################ - -contentful/ -export.json -notes.md - -############## -### GATSBY ### -############## - -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -contentful-import-error-log-* - -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Dependency directories -node_modules/ - -# Optional npm cache directory -.npm - -# Optional eslint cache -.eslintcache - -# Optional REPL history -.node_repl_history - -# dotenv environment variable files -.env* - -# gatsby files +# build output +dist/ +.output/ .cache/ -public - -# Mac files -.DS_Store - - -################# -### TERRAFORM ### -################# - -# Local .terraform directories -**/.terraform/* - -# .tfstate files -*.tfstate -*.tfstate.* -*tfstate* - -# Crash log files -crash.log - -# Exclude all .tfvars files, which are likely to contain sentitive data, such as -# password, private keys, and other secrets. These should not be part of version -# control as they are data points which are potentially sensitive and subject -# to change depending on the environment. -*.tfvars - -# Ignore override files as they are usually used to override resources locally and so -# are not checked in -override.tf -override.tf.json -*_override.tf -*_override.tf.json -# Include override files you do wish to add to version control using negated pattern -# !example_override.tf - -# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan -# example: *tfplan* - -# Ignore CLI configuration files -.terraformrc -terraform.rc - -# Other Text Files -notes.txt +# dependencies +node_modules/ -# Logs -logs -*.log +# logs npm-debug.log* yarn-debug.log* yarn-error.log* +pnpm-debug.log* -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Coverage directory used by tools like istanbul -coverage - -# nyc test coverage -.nyc_output - -# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Bower dependency directory (https://bower.io/) -bower_components - -# node-waf configuration -.lock-wscript - -# Compiled binary addons (http://nodejs.org/api/addons.html) -build/Release - -# Dependency directories -node_modules/ -jspm_packages/ - -# Typescript v1 declaration files -typings/ - -# Optional npm cache directory -.npm - -# Optional eslint cache -.eslintcache - -# Optional REPL history -.node_repl_history - -# Output of 'npm pack' -*.tgz - -# Yarn integrity file -.yarn-integrity - -# dotenv environment variables file -.env* - -# Gatsby build folder -public - -# Gatsby cache folder -.cache - -# Contentful config file -.contentful.json -# Local Netlify folder -.netlify +# environment variables +.env +.env.production -# System files +# macOS-specific files .DS_Store -Thumbs.db diff --git a/astro.config.mjs b/astro.config.mjs index e932e9b..bd80726 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -13,6 +13,9 @@ export default defineConfig({ sitemap(), image({ serviceEntryPoint: '@astrojs/image/sharp' - }) + }), ], + 'process.env.CONTENTFUL_SPACE_ID': JSON.stringify(process.env.CONTENTFUL_SPACE_ID), + 'process.env.CONTENTFUL_DELIVERY_TOKEN': JSON.stringify(process.env.CONTENTFUL_DELIVERY_TOKEN), + 'process.env.CONTENTFUL_PREVIEW_TOKEN': JSON.stringify(process.env.CONTENTFUL_PREVIEW_TOKEN), }); diff --git a/package-lock.json b/package-lock.json index b42076d..f1ed586 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "@example/basics", + "name": "masamicooks", "version": "0.0.1", "lockfileVersion": 2, "requires": true, "packages": { "": { - "name": "@example/basics", + "name": "masamicooks", "version": "0.0.1", "dependencies": { "@astrojs/image": "^0.13.0", diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..af94ebf Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/fonts/nugelo.otf b/public/fonts/nugelo.otf new file mode 100644 index 0000000..25c9980 Binary files /dev/null and b/public/fonts/nugelo.otf differ