Skip to content

Commit

Permalink
adding getting started content in anticipation of workshop. upgrading…
Browse files Browse the repository at this point in the history
… packages and adding mdx support to include astro components in markdown files
  • Loading branch information
software-person committed Dec 7, 2023
1 parent d5ec1f2 commit e478694
Show file tree
Hide file tree
Showing 25 changed files with 3,440 additions and 2,395 deletions.
3 changes: 2 additions & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { defineConfig } from 'astro/config';
import pagefind from "./lib/astro-pagefind/pagefind.ts"
import tailwind from '@astrojs/tailwind'
import mdx from '@astrojs/mdx';

// https://astro.build/config
export default defineConfig({
Expand All @@ -9,5 +10,5 @@ export default defineConfig({
assets: 'assets/docs/_astro'
},

integrations: [tailwind(), pagefind({site: 'dist', outputSubdir: 'assets/docs/pf'})]
integrations: [tailwind(), mdx(), pagefind({site: 'dist', outputSubdir: 'assets/docs/pf'})]
})
5,381 changes: 3,106 additions & 2,275 deletions package-lock.json

Large diffs are not rendered by default.

13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,21 +41,22 @@
"lint-prettier": "npm run common-prettier -- --check"
},
"dependencies": {
"@astrojs/tailwind": "^3.1.3",
"@astrojs/mdx": "^2.0.0",
"@astrojs/tailwind": "^5.0.3",
"@pagefind/default-ui": "^1.0.4",
"astro": "^2.10.15",
"astro": "^4.0.2",
"pagefind": "^1.0.4",
"sirv": "^2.0.3",
"tailwindcss": "^3.3.5"
"tailwindcss": "^3.3.6"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"astro-pagefind": "1800joe/astro-pagefind#main",
"astro-pagefind": "github:1800joe/astro-pagefind#main",
"concurrently": "^8.2.2",
"eslint": "^8.53.0",
"eslint": "^8.55.0",
"eslint-config-standard": "^17.1.0",
"prettier": "^2.8.8",
"typescript": "^5.2.2"
"typescript": "^5.3.2"
},
"eslintConfig": {
"root": true,
Expand Down
Binary file added public/assets/docs/logos/actix.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions public/assets/docs/logos/astro.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions public/assets/docs/logos/django.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/docs/logos/dynamodb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/docs/logos/elixir.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
60 changes: 60 additions & 0 deletions public/assets/docs/logos/go.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/docs/logos/java.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/assets/docs/logos/node.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/docs/logos/phoenix.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/docs/logos/postgres.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions public/assets/docs/logos/python.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit e478694

Please sign in to comment.