A social media server
Find a file
2026-03-20 21:16:26 +00:00
src simplified code further 2026-03-20 14:10:43 -07:00
.gitignore additional preparation 2026-03-17 12:42:03 -07:00
Cargo.lock database setup 2026-03-17 22:37:10 -07:00
Cargo.toml database setup 2026-03-17 22:37:10 -07:00
LICENSE Initial commit 2026-03-17 19:39:46 +00:00
README.md registering is now a go! 2026-03-19 02:13:02 -07:00

Socialite

A social media server

Setup

Dependencies

  • Postgres (PostgreSQL)
  • rust (cargo and rustc)

Commands to run before running server

  1. run CREATE DATABASE database; within psql
  2. run CREATE TABLE users (Username VARCHAR(255) PRIMARY KEY, Password VARCHAR(255) NOT NULL); within psql in database.