Sunrise
Sunrise
The same warnings with OpenBSD https://github.com/yanecc/MockGPT/actions/runs/8981357271/job/24666719117#step:3:1333 crystal 1.4.1
It seems exclusive to the BSD-like os.
I met the same warnings on GitHub Actions, with the full warning message here. https://github.com/yanecc/MockGPT/actions/runs/8913041997/job/24477764716#step:4:24
> 嗨, > > 我不知道你是否知道这一点,但你可以连接到服务器,而无需在连接掩码中指定架构。这样,您就可以看到用户有权访问的所有数据库。此外,您还可以通过屏幕下方按钮的 GUI 创建新数据库(架构)。  That seems to create a new schema, not a database
> You're referring to PostgreSQL, right? Yes, I use PostgreSQL.
> Can you tell us if it can be imported successfully via subscription link? Yes, but the Export feature is valid only for subscription links and is invalid for individual...
`serve_static` serves static files without routes. Now to set routing for static files, ``` Crystal class DemoController < Grip::Controllers::Http def getHtml(context : Context) : Context context .send_file("./public/index.html") end end class...
> is [this](https://grip-framework.github.io/docs/static_file_handling/) what you are looking for? I have set the static file directory and assigned serve_static true. It can only handle request to root path, right?
I mean the url path.
I mean the prefix part of the path **unrelated to the file structure**. I'm seeking for a portable solution. For example, to access the same files ``` Go app.Static("/foo", "./public")...