/** * Test script for running Hastebin locally with file storage * No need for Redis/KeyDB for local testing */ // Set environment variables for testing process.env.HASTEBIN_STORAGE_TYPE = 'file'; process.env.HASTEBIN_PORT = '7777'; process.env.HASTEBIN_HOST = 'localhost'; // Run the server require('./server.js');