Home
Softono

Fedidevs

Open source MIT Python
87
Stars
17
Forks
21
Issues
5
Watchers
3 months
Last Commit

 About Fedidevs

Discover amazing developers across the fediverse 🌐

Platforms

Web Self-hosted

Languages

Python

Need Help Installing Fedidevs?

We provide expert installation service for this software. Our team will install, configure, and secure Fedidevs on your server. plans start at just $30.

Fedidevs

This is the source code for the fedidevs.com website.

Set up dev environment

  1. Install uv

  2. Run the migrations

uv run python manage.py migrate
  1. Run the development server
uv run python manage.py runserver
  1. In a separate terminal set up tailwindcss...
uv run python manage.py tailwind install
  1. ... and start the tailwind server
uv run python manage.py tailwind start
  1. [optional] ... and start the background worker (only needed for syncing followers on login)
uv run python manage.py rundramatiq --reload
  1. [optional] Populate the local database (takes about ~1hr)
uv run python manage.py scheduler --run-now

or run the crawler and indexer separately if you only want to populate account data (takes about ~5mins)

uv run python manage.py crawler
uv run python manage.py indexer
  1. [optional] Create a Django Admin user for http://localhost:8000/admin
uv run python manage.py createsuperuser