We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there any useful way to manipulate domains?
Reasoning: let's say I have https://s3.amazonaws.com I need to build endpoint with bucket name f.domain.add('my-bucket')
https://s3.amazonaws.com
f.domain.add('my-bucket')
then I need to create website out of it:
>> f.url https://my-bucket.s3.amazonaws.com >>> f.domain.part[1] = "s3-website-region"
In total:
>>> f.url https://my-bucket.s3-website-region.amazonaws.com
The text was updated successfully, but these errors were encountered:
not yet unfortunately
great domain support will be added with #110, which i've started but not yet completed
Sorry, something went wrong.
No branches or pull requests
Is there any useful way to manipulate domains?
Reasoning:
let's say I have
https://s3.amazonaws.com
I need to build endpoint with bucket name
f.domain.add('my-bucket')
then I need to create website out of it:
In total:
The text was updated successfully, but these errors were encountered: