Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gxjansen/skywatch
BlueSky Follower Analytics & Management
https://github.com/gxjansen/skywatch
bluesky
Last synced: about 2 months ago
JSON representation
BlueSky Follower Analytics & Management
- Host: GitHub
- URL: https://github.com/gxjansen/skywatch
- Owner: gxjansen
- Created: 2024-11-22T12:56:40.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-22T13:03:16.000Z (about 2 months ago)
- Last Synced: 2024-11-22T14:19:02.258Z (about 2 months ago)
- Topics: bluesky
- Language: TypeScript
- Homepage:
- Size: 10.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SkyWatch
BlueSky Follower Analytics & Management
[![TypeScript](https://img.shields.io/badge/TypeScript-4.9.5-blue.svg)](https://www.typescriptlang.org/)
[![Node.js](https://img.shields.io/badge/Node.js-14.x-green.svg)](https://nodejs.org/)
[![MongoDB](https://img.shields.io/badge/MongoDB-5.x-green.svg)](https://www.mongodb.com/)## Features
- Track and analyze your BlueSky followers
- View detailed statistics and metrics
- Filter and sort followers by various criteria
- Manage your following list
- Real-time import progress tracking
- Dark mode interface## Prerequisites
- Node.js (v14 or higher)
- MongoDB
- BlueSky account## Setup
1. Clone the repository:
```bash
git clone https://github.com/yourusername/bsky-follower-tracker.git
cd bsky-follower-tracker
```2. Install dependencies:
```bash
npm install
```3. Configure environment variables:
```bash
# Copy the example environment file
cp .env.example .env# Edit .env with your credentials
nano .env
```Required environment variables:
- `BLUESKY_HANDLE`: Your BlueSky handle (e.g., "username.bsky.social")
- `BLUESKY_PASSWORD`: Your BlueSky password
- `MONGODB_URI`: MongoDB connection string
- `PORT`: Server port (default: 3000)
- `AUTO_IMPORT`: Enable automatic follower import on startup (true/false)4. Build the project:
```bash
npm run build
```5. Start the server:
```bash
npm start
```The application will be available at `http://localhost:3000` (or your configured PORT).
## Development
Start the development server with:
```bash
npm run dev
```This will:
- Watch for file changes
- Automatically restart the server
- Enable development logging## Commands
- `npm run dev`: Start development server
- `npm run build`: Build the project
- `npm start`: Start production server
- `npm run clean`: Clean build directory
- `npm test`: Run tests (when implemented)## Security Notes
- Never commit your `.env` file
- Keep your BlueSky credentials secure
- Use environment variables for all sensitive data## Contributing
1. Fork the repository
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
3. Commit your changes (`git commit -m 'Add amazing feature'`)
4. Push to the branch (`git push origin feature/amazing-feature`)
5. Open a Pull Request## License
This project is licensed under the MIT License - see the LICENSE file for details.