Skip to content

Commit

Permalink
A fresh start (#1713)
Browse files Browse the repository at this point in the history
Co-authored-by: LTS (Link) <[email protected]>
Co-authored-by: Ricardo Chu <[email protected]>
Co-authored-by: Azura <[email protected]>
Co-authored-by: Hurby <[email protected]>
  • Loading branch information
5 people authored Oct 20, 2024
1 parent 85eb465 commit 16f901b
Show file tree
Hide file tree
Showing 265 changed files with 4,304 additions and 15,343 deletions.
7 changes: 0 additions & 7 deletions .auri/config.json

This file was deleted.

12 changes: 0 additions & 12 deletions .editorconfig

This file was deleted.

20 changes: 0 additions & 20 deletions .eslintrc

This file was deleted.

32 changes: 0 additions & 32 deletions .github/ISSUE_TEMPLATE/bug_report.yaml

This file was deleted.

15 changes: 0 additions & 15 deletions .github/ISSUE_TEMPLATE/documentation.yaml

This file was deleted.

30 changes: 0 additions & 30 deletions .github/ISSUE_TEMPLATE/feature_request.yaml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/workflows/auri.yaml

This file was deleted.

33 changes: 0 additions & 33 deletions .github/workflows/docs.yaml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: "Publish"
on:
push:
branches:
- main

env:
CLOUDFLARE_API_TOKEN: ${{secrets.CLOUDFLARE_PAGES_API_TOKEN}}

jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- name: setup actions
uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 20.5.1
registry-url: https://registry.npmjs.org
- name: install malta
run: |
curl -o malta.tgz -L https://github.com/pilcrowonpaper/malta/releases/latest/download/linux-amd64.tgz
tar -xvzf malta.tgz
- name: build
run: ./linux-amd64/malta build
- name: install wrangler
run: npm i -g wrangler
- name: deploy
run: wrangler pages deploy dist --project-name lucia --branch main
33 changes: 0 additions & 33 deletions .github/workflows/v2-docs.yaml

This file was deleted.

9 changes: 4 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
node_modules
.DS_Store
dist
pnpm-lock.yaml
.vscode
.idea
*.p8
node_modules
package-lock.json
.DS_Store
2 changes: 0 additions & 2 deletions .npmrc

This file was deleted.

14 changes: 2 additions & 12 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,8 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
/.vscode
/.auri/*.md
/dist

docs/dist
packages/*/dist

# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
package-lock.json
yarn.lock

12 changes: 1 addition & 11 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
{
"useTabs": true,
"printWidth": 100,
"trailingComma": "none",
"plugins": ["prettier-plugin-tailwindcss", "prettier-plugin-astro"],
"overrides": [
{
"files": "*.astro",
"options": {
"parser": "astro"
}
}
],
"pluginSearchDirs": ["."]
"printWidth": 100
}
5 changes: 0 additions & 5 deletions CONTRIBUTING.md

This file was deleted.

12 changes: 12 additions & 0 deletions LICENSE-0BSD
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Copyright (c) 2024 pilcrowOnPaper and contributors

Permission to use, copy, modify, and/or distribute this software for
any purpose with or without fee is hereby granted.

THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE
FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
6 changes: 2 additions & 4 deletions LICENSE → LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
MIT License

Copyright (c) 2022 pilcrowOnPaper
Copyright (c) 2024 pilcrowOnPaper and contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +16,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
Loading

0 comments on commit 16f901b

Please sign in to comment.