Skip to content

Commit

Permalink
Merge pull request #2 from datonic/astro
Browse files Browse the repository at this point in the history
feat: 🌟 add Astro
  • Loading branch information
davidgasquez authored Jan 29, 2024
2 parents 856a24c + 965d6b6 commit 342a971
Show file tree
Hide file tree
Showing 19 changed files with 7,081 additions and 949 deletions.
27 changes: 27 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "Datonic Website",
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-20-bullseye",
"customizations": {
"vscode": {
// "settings": {
// "html.format.templating": true,
// "editor.defaultFormatter": "esbenp.prettier-vscode",
// "editor.quickSuggestions": {
// "strings": "on"
// },
// "tailwindCSS.includeLanguages": {
// "astro": "html"
// }
// },
"extensions": [
// "esbenp.prettier-vscode",
"astro-build.astro-vscode",
// "yzhang.markdown-all-in-one",
// "davidanson.vscode-markdownlint",
// "stylelint.vscode-stylelint",
// "bradlc.vscode-tailwindcss",
// "Vue.volar"
]
}
}
}
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: weekly
23 changes: 23 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on: [push]

jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
name: Publish to Cloudflare Pages
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: npm install && npm run build
- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: fbe814d4a37d3d3d7fcfeec0ab929ff6
projectName: datonic
directory: dist
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
branch: main
137 changes: 14 additions & 123 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,130 +1,21 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# 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
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# build output
dist/

# Bower dependency directory (https://bower.io/)
bower_components
# generated types
.astro/

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
# dependencies
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity
# logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# dotenv environment variable files
# environment variables
.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp
.cache

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test
.env.production

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
# macOS-specific files
.DS_Store
11 changes: 0 additions & 11 deletions Makefile

This file was deleted.

59 changes: 0 additions & 59 deletions about/index.html

This file was deleted.

7 changes: 7 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { defineConfig } from 'astro/config';

import tailwind from "@astrojs/tailwind";

export default defineConfig({
integrations: [tailwind()]
});
33 changes: 0 additions & 33 deletions index.html

This file was deleted.

1 change: 0 additions & 1 deletion output.css

This file was deleted.

Loading

0 comments on commit 342a971

Please sign in to comment.