Compare commits
No commits in common. "50bdc5bfeadd35270347d9033fd09d7e9e1b1f50" and "0a1f6f2ef1260657fa6f5227cb1727483ec44928" have entirely different histories.
50bdc5bfea
...
0a1f6f2ef1
11
Cargo.toml
11
Cargo.toml
|
@ -2,12 +2,11 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "bauke-xyz"
|
name = "bauke-xyz"
|
||||||
description = "Bauke's website."
|
description = "https://bauke.xyz"
|
||||||
repository = "https://git.bauke.xyz/Bauke/bauke-xyz"
|
|
||||||
license = "AGPL-3.0-or-later"
|
|
||||||
version = "1.0.0"
|
version = "1.0.0"
|
||||||
authors = ["Bauke <me@bauke.xyz>"]
|
edition = "2018"
|
||||||
edition = "2021"
|
repository = "https://git.holllo.cc/Bauke/bauke.xyz"
|
||||||
|
license = "AGPL-3.0-or-later"
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "bauke-xyz"
|
name = "bauke-xyz"
|
||||||
|
@ -15,6 +14,6 @@ path = "source/main.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
askama = "0.11.1"
|
askama = "0.11.1"
|
||||||
color-eyre = "0.6.2"
|
color-eyre = "0.6.1"
|
||||||
rsass = "0.23.4"
|
rsass = "0.23.4"
|
||||||
userstyles = { git = "https://git.holllo.cc/Bauke/userstyles" }
|
userstyles = { git = "https://git.holllo.cc/Bauke/userstyles" }
|
||||||
|
|
16
README.md
16
README.md
|
@ -1,16 +0,0 @@
|
||||||
# Bauke 🦖 XYZ
|
|
||||||
|
|
||||||
> **Bauke's website.**
|
|
||||||
|
|
||||||
## Development
|
|
||||||
|
|
||||||
Requires working installations of [Rust and Cargo](https://www.rust-lang.org/learn/get-started), [NodeJS](https://nodejs.org) and [pnpm](https://pnpm.io).
|
|
||||||
|
|
||||||
* Install the dependencies with `pnpm install`.
|
|
||||||
* Build the website with `cargo run`.
|
|
||||||
* Deploy to Netlify with `pnpm deploy`.
|
|
||||||
* Test the code with `pnpm test`.
|
|
||||||
|
|
||||||
## License
|
|
||||||
|
|
||||||
Distributed under the [AGPL-3.0-or-later](https://spdx.org/licenses/AGPL-3.0-or-later.html) license, see [LICENSE](https://git.bauke.xyz/Bauke/bauke-xyz/src/branch/main/LICENSE) for more information.
|
|
10
package.json
10
package.json
|
@ -1,5 +1,7 @@
|
||||||
{
|
{
|
||||||
"private": "true",
|
"name": "bauke.xyz",
|
||||||
|
"version": "0.0.0",
|
||||||
|
"license": "AGPL-3.0-or-later",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"deploy": "cargo run --release -q && pnpm deploy:netlify",
|
"deploy": "cargo run --release -q && pnpm deploy:netlify",
|
||||||
"deploy:netlify": "netlify deploy --prod --dir 'public/' -s bauke.xyz",
|
"deploy:netlify": "netlify deploy --prod --dir 'public/' -s bauke.xyz",
|
||||||
|
@ -9,9 +11,9 @@
|
||||||
"modern-normalize": "^1.1.0"
|
"modern-normalize": "^1.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"stylelint": "^14.12.1",
|
"stylelint": "^14.6.1",
|
||||||
"stylelint-config-standard-scss": "^5.0.0",
|
"stylelint-config-standard-scss": "^3.0.0",
|
||||||
"xo": "^0.52.3"
|
"xo": "^0.48.0"
|
||||||
},
|
},
|
||||||
"stylelint": {
|
"stylelint": {
|
||||||
"extends": [
|
"extends": [
|
||||||
|
|
Loading…
Reference in New Issue