mirror of
https://github.com/aurora-dot/pastel.codes.git
synced 2025-04-28 05:22:11 +01:00
Compare commits
No commits in common. "37b22958dacfa625c33f6cf89d61fbd42c0a4636" and "85b543891e1f0700cb4ce90d3e177a545ede4b47" have entirely different histories.
37b22958da
...
85b543891e
71
.github/workflows/codeql-analysis.yml
vendored
71
.github/workflows/codeql-analysis.yml
vendored
@ -1,71 +0,0 @@
|
|||||||
# For most projects, this workflow file will not need changing; you simply need
|
|
||||||
# to commit it to your repository.
|
|
||||||
#
|
|
||||||
# You may wish to alter this file to override the set of languages analyzed,
|
|
||||||
# or to provide custom queries or build logic.
|
|
||||||
#
|
|
||||||
# ******** NOTE ********
|
|
||||||
# We have attempted to detect the languages in your repository. Please check
|
|
||||||
# the `language` matrix defined below to confirm you have the correct set of
|
|
||||||
# supported CodeQL languages.
|
|
||||||
#
|
|
||||||
name: "CodeQL"
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [ master ]
|
|
||||||
pull_request:
|
|
||||||
# The branches below must be a subset of the branches above
|
|
||||||
branches: [ master ]
|
|
||||||
schedule:
|
|
||||||
- cron: '38 12 * * 3'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
analyze:
|
|
||||||
name: Analyze
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
actions: read
|
|
||||||
contents: read
|
|
||||||
security-events: write
|
|
||||||
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
language: [ 'javascript' ]
|
|
||||||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
|
|
||||||
# Learn more:
|
|
||||||
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
# Initializes the CodeQL tools for scanning.
|
|
||||||
- name: Initialize CodeQL
|
|
||||||
uses: github/codeql-action/init@v1
|
|
||||||
with:
|
|
||||||
languages: ${{ matrix.language }}
|
|
||||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
|
||||||
# By default, queries listed here will override any specified in a config file.
|
|
||||||
# Prefix the list here with "+" to use these queries and those in the config file.
|
|
||||||
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
|
||||||
|
|
||||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
|
||||||
# If this step fails, then you should remove it and run the build manually (see below)
|
|
||||||
- name: Autobuild
|
|
||||||
uses: github/codeql-action/autobuild@v1
|
|
||||||
|
|
||||||
# ℹ️ Command-line programs to run using the OS shell.
|
|
||||||
# 📚 https://git.io/JvXDl
|
|
||||||
|
|
||||||
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
|
||||||
# and modify them (or add more) to build your code if your project
|
|
||||||
# uses a compiled language
|
|
||||||
|
|
||||||
#- run: |
|
|
||||||
# make bootstrap
|
|
||||||
# make release
|
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
|
||||||
uses: github/codeql-action/analyze@v1
|
|
@ -1,5 +1,5 @@
|
|||||||
# pastel.codes
|
# pastel.codes
|
||||||
|
|
||||||
My portfolio website written in node.js, pug and tailwind
|
My portfolio website written in node.js, pug and sass
|
||||||
|
|
||||||
Docker image: https://hub.docker.com/r/auroradot/pastel.codes
|
Docker image: https://hub.docker.com/r/auroradot/pastel.codes
|
||||||
|
14
package-lock.json
generated
14
package-lock.json
generated
@ -9,7 +9,6 @@
|
|||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@sendgrid/mail": "^7.4.4",
|
"@sendgrid/mail": "^7.4.4",
|
||||||
"app-root-path": "^3.0.0",
|
|
||||||
"autoprefixer": "^10.3.4",
|
"autoprefixer": "^10.3.4",
|
||||||
"axios": "^0.21.2",
|
"axios": "^0.21.2",
|
||||||
"cookie-parser": "^1.4.5",
|
"cookie-parser": "^1.4.5",
|
||||||
@ -372,14 +371,6 @@
|
|||||||
"node": ">= 8"
|
"node": ">= 8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/app-root-path": {
|
|
||||||
"version": "3.0.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/app-root-path/-/app-root-path-3.0.0.tgz",
|
|
||||||
"integrity": "sha512-qMcx+Gy2UZynHjOHOIXPNvpf+9cjvk3cWrBBK7zg4gH9+clobJRb9NGzcT7mQTcV/6Gm/1WelUtqxVXnNlrwcw==",
|
|
||||||
"engines": {
|
|
||||||
"node": ">= 6.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/arg": {
|
"node_modules/arg": {
|
||||||
"version": "5.0.1",
|
"version": "5.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz",
|
||||||
@ -4112,11 +4103,6 @@
|
|||||||
"picomatch": "^2.0.4"
|
"picomatch": "^2.0.4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"app-root-path": {
|
|
||||||
"version": "3.0.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/app-root-path/-/app-root-path-3.0.0.tgz",
|
|
||||||
"integrity": "sha512-qMcx+Gy2UZynHjOHOIXPNvpf+9cjvk3cWrBBK7zg4gH9+clobJRb9NGzcT7mQTcV/6Gm/1WelUtqxVXnNlrwcw=="
|
|
||||||
},
|
|
||||||
"arg": {
|
"arg": {
|
||||||
"version": "5.0.1",
|
"version": "5.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz",
|
||||||
|
17
package.json
17
package.json
@ -4,9 +4,7 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"watch": {
|
"watch": {
|
||||||
"build-tail": {
|
"build-tail": {
|
||||||
"patterns": [
|
"patterns": ["../views"],
|
||||||
"views/"
|
|
||||||
],
|
|
||||||
"extensions": "pug"
|
"extensions": "pug"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -18,7 +16,7 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@sendgrid/mail": "^7.4.4",
|
"@sendgrid/mail": "^7.4.4",
|
||||||
"app-root-path": "^3.0.0",
|
"autoprefixer": "^10.3.4",
|
||||||
"axios": "^0.21.2",
|
"axios": "^0.21.2",
|
||||||
"cookie-parser": "^1.4.5",
|
"cookie-parser": "^1.4.5",
|
||||||
"express": "^4.17.1",
|
"express": "^4.17.1",
|
||||||
@ -28,13 +26,10 @@
|
|||||||
"http-errors": "^1.8.0",
|
"http-errors": "^1.8.0",
|
||||||
"morgan": "^1.10.0",
|
"morgan": "^1.10.0",
|
||||||
"nodemailer": "^6.6.0",
|
"nodemailer": "^6.6.0",
|
||||||
"pug": "^3.0.2",
|
|
||||||
"winston": "^3.3.3"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"tailwindcss": "^2.2.15",
|
|
||||||
"postcss-cli": "^8.3.1",
|
|
||||||
"npm-watch": "^0.11.0",
|
"npm-watch": "^0.11.0",
|
||||||
"autoprefixer": "^10.3.4"
|
"postcss-cli": "^8.3.1",
|
||||||
|
"pug": "^3.0.2",
|
||||||
|
"tailwindcss": "^2.2.15",
|
||||||
|
"winston": "^3.3.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
7134
public/javascript/bootstrap.bundle.js
vendored
Normal file
7134
public/javascript/bootstrap.bundle.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
public/javascript/bootstrap.bundle.js.map
Normal file
1
public/javascript/bootstrap.bundle.js.map
Normal file
File diff suppressed because one or more lines are too long
7
public/javascript/bootstrap.bundle.min.js
vendored
Normal file
7
public/javascript/bootstrap.bundle.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/javascript/bootstrap.bundle.min.js.map
Normal file
1
public/javascript/bootstrap.bundle.min.js.map
Normal file
File diff suppressed because one or more lines are too long
4521
public/javascript/bootstrap.js
vendored
Normal file
4521
public/javascript/bootstrap.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
public/javascript/bootstrap.js.map
Normal file
1
public/javascript/bootstrap.js.map
Normal file
File diff suppressed because one or more lines are too long
7
public/javascript/bootstrap.min.js
vendored
Normal file
7
public/javascript/bootstrap.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/javascript/bootstrap.min.js.map
Normal file
1
public/javascript/bootstrap.min.js.map
Normal file
File diff suppressed because one or more lines are too long
@ -1,19 +1,3 @@
|
|||||||
@tailwind base;
|
@tailwind base;
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Titling Gothic FB';
|
|
||||||
src: url("../fonts/TITLINGGOTHICFB-WIDE.OTF") format('opentype')
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Gilroy';
|
|
||||||
src: url("../fonts/Gilroy-ExtraBold.otf") format('opentype')
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Apercu Mono';
|
|
||||||
src: url("../fonts/ApercuMono.ttf") format('truetype');
|
|
||||||
}
|
|
||||||
|
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
@ -1,28 +1,9 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
mode: "jit",
|
mode: "jit",
|
||||||
purge: ['views/*.pug'],
|
purge: ['../views/*.pug'],
|
||||||
darkMode: false, // or 'media' or 'class'
|
darkMode: false, // or 'media' or 'class'
|
||||||
theme: {
|
theme: {
|
||||||
extend: {
|
extend: {},
|
||||||
fontFamily: {
|
|
||||||
'extra': ['"Titling Gothic FB"'],
|
|
||||||
'sans': ['Gilroy'],
|
|
||||||
'mono': ['"Apercu Mono"'],
|
|
||||||
},
|
|
||||||
colors: {
|
|
||||||
transparent: 'transparent',
|
|
||||||
current: 'currentColor',
|
|
||||||
black: {
|
|
||||||
DEFAULT: '#002234',
|
|
||||||
},
|
|
||||||
pink: {
|
|
||||||
DEFAULT: '#CC7A98',
|
|
||||||
},
|
|
||||||
green: {
|
|
||||||
DEFAULT: '#CDE7B0',
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
variants: {
|
variants: {
|
||||||
extend: {},
|
extend: {},
|
||||||
|
@ -44,5 +44,6 @@ html
|
|||||||
a(href="/") EEEE.
|
a(href="/") EEEE.
|
||||||
|
|
||||||
script(src="/javascript/jquery-3.5.1.min.js")
|
script(src="/javascript/jquery-3.5.1.min.js")
|
||||||
|
script(src="/javascript/bootstrap.js")
|
||||||
script(src="/javascript/nav.js")
|
script(src="/javascript/nav.js")
|
||||||
block scripts
|
block scripts
|
||||||
|
Loading…
Reference in New Issue
Block a user