songtianlun
d728d7f50e
- Created BatchGenerateWeatherArtsJob to process eligible cities and generate weather art. - Introduced GenerateWeatherArtJob for generating weather art and image attachment. - Added AiService for obtaining prompts and generating images with OpenAI API. - Implemented WeatherService to fetch current weather data from the QWeather API. - Updated Gemfile with necessary gems (whenever, ruby-openai, httparty, down, aws-sdk-s3). This commit introduces a system to create and store weather art images for various cities based on current weather conditions, leveraging external APIs for data and image generation.
27 lines
536 B
Ruby
27 lines
536 B
Ruby
japan = Country.find_by code: 'JP'
|
|
|
|
City.create!([
|
|
{
|
|
name: 'Tokyo',
|
|
latitude: 35.6762,
|
|
longitude: 139.6503,
|
|
country: japan,
|
|
timezone: 'Asia/Tokyo',
|
|
active: false,
|
|
priority: 100,
|
|
last_weather_fetch: 10.hours.ago,
|
|
last_image_generation: 10.hours.ago
|
|
},
|
|
{
|
|
name: 'Yokohama',
|
|
latitude: 35.4437,
|
|
longitude: 139.6380,
|
|
country: japan,
|
|
timezone: 'Asia/Tokyo',
|
|
active: false,
|
|
priority: 100,
|
|
last_weather_fetch: 10.hours.ago,
|
|
last_image_generation: 10.hours.ago
|
|
}
|
|
])
|