Skip to content

Commit

Permalink
happy formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
SanderGi committed Apr 16, 2024
1 parent b265f15 commit 1a0c9f4
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 7 deletions.
17 changes: 14 additions & 3 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
# Node Modules
node_modules

# Firebase static files
# Non server files
public

# Cache
.firebase
firebase.json
.firebaserc
.editorconfig
.eslintrc.yml
.eslintignore
.prettierignore
.prettierrc
LICENSE.md
nodemon.json
README.md
.github
.badges
.vscode

# Secrets
.env
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![LOC](./.badges/lines-of-code.svg)](https://github.com/clr-li/AttendanceScanner)
[![FileCount](./.badges/file-count.svg)](https://github.com/clr-li/AttendanceScanner)
[![WebsiteStatus](https://img.shields.io/website?url=https%3A%2F%2Fattendancescannerqr.web.app%2F)](https://attendancescannerqr.web.app)
[![WebsiteStatus](https://img.shields.io/website?url=https%3A%2F%2Fattendancescannerqr.web.app%2F)](https://attendqr.com)
![Tests](https://github.com/clr-li/AttendanceScanner/actions/workflows/tests.yml/badge.svg)
[![Coverage](./.badges/coverage.svg)](https://github.com/clr-li/AttendanceScanner)

Expand Down
2 changes: 1 addition & 1 deletion fly.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ primary_region = 'sea'
processes = ['app']

[[vm]]
memory = '1gb'
memory = '256mb'
cpu_kind = 'shared'
cpus = 1
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"deploy:fire": "node -r dotenv/config ./scripts/deploy.js",
"dev": "ATT_CODE_DIR=.data/att_codes DB_FILE=./.data/ATT.db DEVELOPMENT=true PORT=3000 nodemon --inspect -r dotenv/config ./server/server.js",
"docker:build": "docker build --tag 'attendqr' .",
"docker:run": "docker run -p 3000:3000 --env-file .env 'attendqr'",
"docker:run": "docker run -t -i -p 3000:3000 --env-file .env 'attendqr'",
"predeploy": "git checkout main && git diff-index --quiet HEAD -- || (echo 'Please commit your changes before deploying' && exit 1)",
"predev": "open http://localhost:3000 || start chrome \"http://localhost:3000\" || google-chrome 'http://localhost:3000' || echo 'Could not open browser automatically. Please open http://localhost:3000 manually'",
"start": "node ./server/server.js",
Expand Down
6 changes: 5 additions & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,11 @@ <h1>Actions</h1>
></action-icon>
</div>
</section>
<section class="not-logged-in medium-section" style="padding: 2em; padding-top: 1em" id="pricing">
<section
class="not-logged-in medium-section"
style="padding: 2em; padding-top: 1em"
id="pricing"
>
<h1 style="margin-bottom: 0.5em">Pricing</h1>
<div id="free" class="subscription">
<h3 style="margin-bottom: 3px">Free Plan</h3>
Expand Down

0 comments on commit 1a0c9f4

Please sign in to comment.