Skip to content

Commit 16f901b

Browse files
pilcrowonpaperlts20050703kypexflyeoshorizonhurby24
authored
A fresh start (#1713)
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]>
1 parent 85eb465 commit 16f901b

File tree

265 files changed

+4304
-15343
lines changed

Some content is hidden

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

265 files changed

+4304
-15343
lines changed

.auri/config.json

-7
This file was deleted.

.editorconfig

-12
This file was deleted.

.eslintrc

-20
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.yaml

-32
This file was deleted.

.github/ISSUE_TEMPLATE/documentation.yaml

-15
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.yaml

-30
This file was deleted.

.github/workflows/auri.yaml

-29
This file was deleted.

.github/workflows/docs.yaml

-33
This file was deleted.

.github/workflows/publish.yaml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: "Publish"
2+
on:
3+
push:
4+
branches:
5+
- main
6+
7+
env:
8+
CLOUDFLARE_API_TOKEN: ${{secrets.CLOUDFLARE_PAGES_API_TOKEN}}
9+
10+
jobs:
11+
publish:
12+
name: Publish
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: setup actions
16+
uses: actions/checkout@v3
17+
- name: setup node
18+
uses: actions/setup-node@v3
19+
with:
20+
node-version: 20.5.1
21+
registry-url: https://registry.npmjs.org
22+
- name: install malta
23+
run: |
24+
curl -o malta.tgz -L https://github.com/pilcrowonpaper/malta/releases/latest/download/linux-amd64.tgz
25+
tar -xvzf malta.tgz
26+
- name: build
27+
run: ./linux-amd64/malta build
28+
- name: install wrangler
29+
run: npm i -g wrangler
30+
- name: deploy
31+
run: wrangler pages deploy dist --project-name lucia --branch main

.github/workflows/v2-docs.yaml

-33
This file was deleted.

.gitignore

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
node_modules
2-
.DS_Store
1+
dist
32
pnpm-lock.yaml
4-
.vscode
5-
.idea
6-
*.p8
3+
node_modules
4+
package-lock.json
5+
.DS_Store

.npmrc

-2
This file was deleted.

.prettierignore

+2-12
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,8 @@
11
.DS_Store
22
node_modules
3-
/build
4-
/.svelte-kit
5-
/package
6-
.env
7-
.env.*
8-
!.env.example
9-
/.vscode
10-
/.auri/*.md
3+
/dist
114

12-
docs/dist
13-
packages/*/dist
14-
15-
# Ignore files for PNPM, NPM and YARN
165
pnpm-lock.yaml
176
package-lock.json
187
yarn.lock
8+

.prettierrc.json

+1-11
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
{
22
"useTabs": true,
3-
"printWidth": 100,
43
"trailingComma": "none",
5-
"plugins": ["prettier-plugin-tailwindcss", "prettier-plugin-astro"],
6-
"overrides": [
7-
{
8-
"files": "*.astro",
9-
"options": {
10-
"parser": "astro"
11-
}
12-
}
13-
],
14-
"pluginSearchDirs": ["."]
4+
"printWidth": 100
155
}

CONTRIBUTING.md

-5
This file was deleted.

LICENSE-0BSD

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Copyright (c) 2024 pilcrowOnPaper and contributors
2+
3+
Permission to use, copy, modify, and/or distribute this software for
4+
any purpose with or without fee is hereby granted.
5+
6+
THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL
7+
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
8+
OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE
9+
FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
10+
DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
11+
AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
12+
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

LICENSE LICENSE-MIT

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
MIT License
2-
3-
Copyright (c) 2022 pilcrowOnPaper
1+
Copyright (c) 2024 pilcrowOnPaper and contributors
42

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

0 commit comments

Comments
 (0)