I'm coding within replit and it just says this
WARNING: This is a development server. Do not use it in a production deployment.
- Running on (my IP-not showing it in this but it says my ip) (Press CTRL+C to quit)
import discord
import os
from keep_alive import keep_alive
client = discord.Client()
@client.event
async def on_ready():
print('We have logged in as {0.user}'.format(client))
@client.event
async def on_message(message):
if message.author == client.user:
return
if message.content.startswith('$hello'):
await message.channel.send('Hello!')
keep_alive()
token=(removed my token for privacy)