tangled
alpha
login
or
join now
vielle.dev
/
atcities.dev
[WIP] A (somewhat barebones) atproto app for creating custom sites without hosting!
3
fork
atom
overview
issues
pulls
pipelines
upload: initial commit
vielle.dev
3 months ago
455d1d41
f6fe7e7b
options
unified
split
Changed files
+18
-1
.gitignore
upload
.gitignore
Cargo.lock
Cargo.toml
src
main.rs
+1
-1
.gitignore
···
1
1
server/node_modules/*
2
2
-
server/local.db
2
2
+
server/local.db
+1
upload/.gitignore
···
1
1
+
/target
+7
upload/Cargo.lock
···
1
1
+
# This file is automatically @generated by Cargo.
2
2
+
# It is not intended for manual editing.
3
3
+
version = 4
4
4
+
5
5
+
[[package]]
6
6
+
name = "atcities-upload"
7
7
+
version = "0.1.0"
+6
upload/Cargo.toml
···
1
1
+
[package]
2
2
+
name = "atcities-upload"
3
3
+
version = "0.1.0"
4
4
+
edition = "2024"
5
5
+
6
6
+
[dependencies]
+3
upload/src/main.rs
···
1
1
+
fn main() {
2
2
+
println!("Hello, World!")
3
3
+
}