Skip to content

Commit

Permalink
switched external domain
Browse files Browse the repository at this point in the history
updated sst dependencies. Using an existing ssl certificate.
  • Loading branch information
magicalpuffin committed Mar 31, 2024
1 parent 8ad9617 commit 1960993
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 463 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/sst_deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
branches: ["main"]

env:
CERT_ARN: ${{ secrets.CERT_ARN }}

# Concurrency group name ensures concurrent workflow runs wait for any in-progress job to finish
concurrency:
group: merge-${{ github.ref }}
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@ cdk.context.json

# python virtual environment
.venv
__pycache__
__pycache__

.env
80 changes: 40 additions & 40 deletions frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
{
"name": "frontend",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "sst bind vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch"
},
"devDependencies": {
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@tailwindcss/typography": "^0.5.9",
"@types/marked": "^5.0.0",
"@types/sanitize-html": "^2.9.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"autoprefixer": "^10.4.14",
"daisyui": "^3.9.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"highlight.js": "^11.9.0",
"marked": "^5.0.3",
"marked-highlight": "^2.1.0",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"prettier-plugin-tailwindcss": "^0.2.8",
"sanitize-html": "^2.12.1",
"svelte": "^4.2.8",
"svelte-check": "^3.4.3",
"svelte-kit-sst": "^2.38.7",
"tailwindcss": "^3.3.2",
"tslib": "^2.5.2",
"typescript": "^5.3.3",
"vite": "^5.0.0"
},
"type": "module"
"name": "frontend",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "sst bind vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch"
},
"devDependencies": {
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@tailwindcss/typography": "^0.5.9",
"@types/marked": "^5.0.0",
"@types/sanitize-html": "^2.9.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"autoprefixer": "^10.4.14",
"daisyui": "^3.9.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"highlight.js": "^11.9.0",
"marked": "^5.0.3",
"marked-highlight": "^2.1.0",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"prettier-plugin-tailwindcss": "^0.2.8",
"sanitize-html": "^2.12.1",
"svelte": "^4.2.8",
"svelte-check": "^3.4.3",
"svelte-kit-sst": "2.41.4",
"tailwindcss": "^3.3.2",
"tslib": "^2.5.2",
"typescript": "^5.3.3",
"vite": "^5.0.0"
},
"type": "module"
}
Loading

0 comments on commit 1960993

Please sign in to comment.