-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial commit * Consolidate duplicated money formatting code (#43) * Ensure feature parity between new `Modal`s and old `popups.js` (#44) * Add empty admin page (#45) * Fix Item subtitle * Revert changing of intentional typo * Reduce amount of "prop drilling" (#46) * Use `Context` for item state * `ItemProvider.js` -> `ItemsProvider.js` * Use `Context` for modal state * Remove some unused imports * Disable submit bit button in info modal if item ended * Remove unused argument from HomePage * Add content to admin page (#48) * Fix GitHub icon in Footer * Fix some warnings & some small tweaks * Add table and action buttons to admin page * Move images (not final location) * Delete last of old JS * Edit `items.yml` formatting * Delete unused `admin.html` * Correct package name * Add concurrency fix * Fix warning * Fix name and version * Change concurrency condition * Update action versions * Fix workflow * New workflow * Maybe fix * Fix dependency * Correct build dir * Fix homepage * Move images * Relative homepage * Try removing homepage * Fix missing dependency * Change all paths until better solution found * Make homepage usable by others * Rename workflow file and update readme * Change action to run on push to main
- Loading branch information
Showing
52 changed files
with
19,479 additions
and
1,291 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Deploy to GitHub Pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: '21' | ||
- run: npm install | ||
- run: npm run build | ||
- uses: actions/upload-pages-artifact@v2 | ||
with: | ||
path: 'build/' | ||
|
||
deploy: | ||
needs: build | ||
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment | ||
permissions: | ||
pages: write # to deploy to Pages | ||
id-token: write # to verify the deployment originates from an appropriate source | ||
# Deploy to the github-pages environment | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
# Specify a runner + deployment step | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,107 +1,23 @@ | ||
# ----------------------------------------------------------------- | ||
# .gitignore | ||
# Bare Minimum Git | ||
# http://ironco.de/bare-minimum-git/ | ||
# ver 20181206 | ||
# | ||
# From the root of your project run | ||
# curl -O https://gist.githubusercontent.com/salcode/10017553/raw/.gitignore | ||
# to download this file | ||
# | ||
# This file is tailored for a general web project, it | ||
# is NOT optimized for a WordPress project. See | ||
# https://gist.github.com/salcode/b515f520d3f8207ecd04 | ||
# for a WordPress specific .gitignore | ||
# | ||
# This file specifies intentionally untracked files to ignore | ||
# http://git-scm.com/docs/gitignore | ||
# | ||
# NOTES: | ||
# The purpose of gitignore files is to ensure that certain files not | ||
# tracked by Git remain untracked. | ||
# | ||
# To ignore uncommitted changes in a file that is already tracked, | ||
# use `git update-index --assume-unchanged`. | ||
# | ||
# To stop tracking a file that is currently tracked, | ||
# use `git rm --cached` | ||
# | ||
# Change Log: | ||
# 20190705 ignore private/secret files | ||
# 20181206 remove trailing whitespaces | ||
# 20180714 unignore .phpcs.xml.dist | ||
# 20170502 unignore composer.lock | ||
# 20170502 ignore components loaded via Bower | ||
# 20150326 ignore jekyll build directory `/_site` | ||
# 20150324 Reorganized file to list ignores first and whitelisted last, | ||
# change WordPress .gitignore link to preferred gist, | ||
# add curl line for quick installation | ||
# ignore composer files (vendor directory and lock file) | ||
# 20140606 Add .editorconfig as a tracked file | ||
# 20140418 remove explicit inclusion | ||
# of readme.md (this is not an ignored file by default) | ||
# 20140407 Initially Published | ||
# | ||
# ----------------------------------------------------------------- | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# ignore all files starting with . or ~ | ||
.* | ||
~* | ||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# ignore node/grunt dependency directories | ||
node_modules/ | ||
# testing | ||
/coverage | ||
|
||
# ignore composer vendor directory | ||
/vendor | ||
# production | ||
/build | ||
|
||
# ignore components loaded via Bower | ||
/bower_components | ||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
# ignore jekyll build directory | ||
/_site | ||
|
||
# ignore OS generated files | ||
ehthumbs.db | ||
Thumbs.db | ||
|
||
# ignore Editor files | ||
*.sublime-project | ||
*.sublime-workspace | ||
*.komodoproject | ||
|
||
# ignore log files and databases | ||
*.log | ||
*.sql | ||
*.sqlite | ||
|
||
# ignore compiled files | ||
*.com | ||
*.class | ||
*.dll | ||
*.exe | ||
*.o | ||
*.so | ||
|
||
# ignore packaged files | ||
*.7z | ||
*.dmg | ||
*.gz | ||
*.iso | ||
*.jar | ||
*.rar | ||
*.tar | ||
*.zip | ||
|
||
# ignore private/secret files | ||
*.der | ||
*.key | ||
*.pem | ||
|
||
# ------------------------- | ||
# BEGIN Whitelisted Files | ||
# ------------------------- | ||
|
||
# track these files, if they exist | ||
!.gitignore | ||
!.editorconfig | ||
!.phpcs.xml.dist | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.