Skip to content

Commit

Permalink
Changed Vagrantfile network definition to private
Browse files Browse the repository at this point in the history
  • Loading branch information
DoRTaL94 committed Apr 20, 2020
1 parent b9a2458 commit 197a78b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/bionic64"
config.vm.provision :shell, path: "setup.sh"
config.vm.network "public_network"
config.vm.network "private_network", type: "dhcp"
config.vm.provider "virtualbox" do |v|
v.gui = false
v.name = "Edison_test"
Expand Down
1 change: 0 additions & 1 deletion backend/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ class Config:

class ProductionConfig(Config):
ENV_KEYWORD = "production"
pass

class DevelopmentConfig(Config):
ENV_KEYWORD = "development"
Expand Down

0 comments on commit 197a78b

Please sign in to comment.