[WIP] A (somewhat barebones) atproto app for creating custom sites without hosting!

upload: initial commit

Changed files
+18 -1
upload
+1 -1
.gitignore
··· 1 1 server/node_modules/* 2 - server/local.db 2 + server/local.db
+1
upload/.gitignore
··· 1 + /target
+7
upload/Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 4 4 + 5 + [[package]] 6 + name = "atcities-upload" 7 + version = "0.1.0"
+6
upload/Cargo.toml
··· 1 + [package] 2 + name = "atcities-upload" 3 + version = "0.1.0" 4 + edition = "2024" 5 + 6 + [dependencies]
+3
upload/src/main.rs
··· 1 + fn main() { 2 + println!("Hello, World!") 3 + }