Skip to content

Commit

Permalink
allow internal & remove internal host
Browse files Browse the repository at this point in the history
  • Loading branch information
orzklv committed Nov 20, 2023
1 parent 16c7b0f commit d1511ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
- 8443:8443
env_file: .env
extra_hosts:
- "host.docker.internal:host-gateway"
- "host.docker.internal:host-gateway"

# The commented out section below is an example of how to define a PostgreSQL
# database that your application can use. `depends_on` tells Docker Compose to
Expand Down
3 changes: 1 addition & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
pretty_env_logger::init();
log::info!("Starting Rustina Assistant...");

let bot = Bot::from_env();
// .set_api_url(std::env::var("TELEGRAM_API").unwrap().parse().unwrap());
let bot = Bot::from_env();

let groups = Groups::new();
let github = GitHub::new();
Expand Down

1 comment on commit d1511ea

@deno-deploy
Copy link

@deno-deploy deno-deploy bot commented on d1511ea Nov 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Failed to deploy:

Module not found "file:///src/mod.ts".

Please sign in to comment.