Skip to content

Commit ac5844f

Browse files
committed
Update configuration files and components
1 parent aa2d620 commit ac5844f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+9672
-8202
lines changed

.github/workflows/deploy.yml

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
1-
name: Deploy to GitHub Pages
2-
3-
on:
4-
# Trigger the workflow every time you push to the `main` branch
5-
# Using a different branch name? Replace `main` with your branch’s name
6-
push:
7-
branches: [main]
8-
# Allows you to run this workflow manually from the Actions tab on GitHub.
9-
workflow_dispatch:
10-
11-
# Allow this job to clone the repo and create a page deployment
12-
permissions:
13-
contents: read
14-
pages: write
15-
id-token: write
16-
17-
jobs:
18-
build:
19-
runs-on: ubuntu-latest
20-
steps:
21-
- name: Checkout your repository using git
22-
uses: actions/checkout@v3
23-
- name: Install, build, and upload your site
24-
uses: withastro/action@v0
25-
# with:
26-
# path: . # The root location of your Astro project inside the repository. (optional)
27-
# node-version: 16 # The specific version of Node that should be used to build your site. Defaults to 16. (optional)
28-
# package-manager: yarn # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)
29-
30-
deploy:
31-
needs: build
32-
runs-on: ubuntu-latest
33-
environment:
34-
name: github-pages
35-
url: ${{ steps.deployment.outputs.page_url }}
36-
steps:
37-
- name: Deploy to GitHub Pages
38-
id: deployment
39-
uses: actions/deploy-pages@v1
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
# Trigger the workflow every time you push to the `main` branch
5+
# Using a different branch name? Replace `main` with your branch’s name
6+
push:
7+
branches: [main]
8+
# Allows you to run this workflow manually from the Actions tab on GitHub.
9+
workflow_dispatch:
10+
11+
# Allow this job to clone the repo and create a page deployment
12+
permissions:
13+
contents: read
14+
pages: write
15+
id-token: write
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout your repository using git
22+
uses: actions/checkout@v3
23+
- name: Install, build, and upload your site
24+
uses: withastro/action@v0
25+
# with:
26+
# path: . # The root location of your Astro project inside the repository. (optional)
27+
# node-version: 16 # The specific version of Node that should be used to build your site. Defaults to 16. (optional)
28+
# package-manager: yarn # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)
29+
30+
deploy:
31+
needs: build
32+
runs-on: ubuntu-latest
33+
environment:
34+
name: github-pages
35+
url: ${{ steps.deployment.outputs.page_url }}
36+
steps:
37+
- name: Deploy to GitHub Pages
38+
id: deployment
39+
uses: actions/deploy-pages@v1

.gitignore

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
# build output
2-
dist/
3-
# generated types
4-
.astro/
5-
6-
# dependencies
7-
node_modules/
8-
9-
# logs
10-
npm-debug.log*
11-
yarn-debug.log*
12-
yarn-error.log*
13-
pnpm-debug.log*
14-
15-
16-
# environment variables
17-
.env
18-
.env.production
19-
20-
# macOS-specific files
21-
.DS_Store
1+
# build output
2+
dist/
3+
# generated types
4+
.astro/
5+
6+
# dependencies
7+
node_modules/
8+
9+
# logs
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
pnpm-debug.log*
14+
15+
16+
# environment variables
17+
.env
18+
.env.production
19+
20+
# macOS-specific files
21+
.DS_Store

.vscode/extensions.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
2-
"recommendations": ["astro-build.astro-vscode"],
3-
"unwantedRecommendations": []
4-
}
1+
{
2+
"recommendations": ["astro-build.astro-vscode", "esbenp.prettier-vscode"],
3+
"unwantedRecommendations": []
4+
}

.vscode/launch.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
{
2-
"version": "0.2.0",
3-
"configurations": [
4-
{
5-
"command": "./node_modules/.bin/astro dev",
6-
"name": "Development server",
7-
"request": "launch",
8-
"type": "node-terminal"
9-
}
10-
]
11-
}
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"command": "./node_modules/.bin/astro dev",
6+
"name": "Development server",
7+
"request": "launch",
8+
"type": "node-terminal"
9+
}
10+
]
11+
}

.vscode/settings.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
{
2-
"conventionalCommits.scopes": ["github-actions", "app"]
3-
}
1+
{
2+
"conventionalCommits.scopes": ["github-actions", "app"]
3+
}

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Concordia University, Nebraska Competitive Programming and Software Development Team Website
2-
3-
This team website was designed using:
4-
- [Astro](https://astro.build)
5-
- [Tailwindcss](https://tailwindcss.com)
6-
- [Alpine.js](https://alpinejs.dev)
7-
8-
To view please go to https://cune-programming.github.io.
9-
10-
---
11-
12-
Copyright (c) 2023 Concorida Programming Team. All Rights Reserved.
1+
# Concordia University, Nebraska Competitive Programming and Software Development Team Website
2+
3+
This team website was designed using:
4+
- [Astro](https://astro.build)
5+
- [Tailwindcss](https://tailwindcss.com)
6+
- [Alpine.js](https://alpinejs.dev)
7+
8+
To view please go to https://cune-programming.github.io.
9+
10+
---
11+
12+
Copyright (c) 2023 Concorida Programming Team. All Rights Reserved.

astro.config.mjs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import { defineConfig } from "astro/config";
2-
import tailwind from "@astrojs/tailwind";
3-
import alpinejs from "@astrojs/alpinejs";
4-
5-
import sitemap from "@astrojs/sitemap";
6-
import robotsTxt from "astro-robots-txt";
7-
8-
// https://astro.build/config
9-
export default defineConfig({
10-
site: "https://cune-programming.github.io",
11-
integrations: [tailwind(), alpinejs(), sitemap(), robotsTxt()],
12-
});
1+
import { defineConfig } from "astro/config";
2+
import tailwind from "@astrojs/tailwind";
3+
import alpinejs from "@astrojs/alpinejs";
4+
5+
import sitemap from "@astrojs/sitemap";
6+
import robotsTxt from "astro-robots-txt";
7+
8+
// https://astro.build/config
9+
export default defineConfig({
10+
site: "https://cune-programming.github.io",
11+
integrations: [tailwind(), alpinejs(), sitemap(), robotsTxt()],
12+
});

0 commit comments

Comments
 (0)