diff --git a/.gitignore b/.gitignore
index 5f01e718..6ebf0bb3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -37,3 +37,4 @@ yarn-debug.log*
 /docuseal
 /ee
 dump.rdb
+pg_data
diff --git a/app/views/pages/landing.html.erb b/app/views/pages/landing.html.erb
index 20043af8..4c411272 100644
--- a/app/views/pages/landing.html.erb
+++ b/app/views/pages/landing.html.erb
@@ -5,7 +5,7 @@
         
   <% if signed_in? %>
     
-      <% if Docuseal.demo? %>
-        
-          <%= t('sign_up') %>
-        
-        
-          <%= render 'shared/github_button' %>
-        
-      <% else %>
+   
         
           <%= render 'shared/navbar_buttons' %>
           <%= link_to 'Settings', settings_profile_index_path, class: 'hidden md:inline-flex font-medium text-lg' %>
         
-      <% end %>
       
         
   <% end %>
 
 
diff --git a/app/views/shared/_navbar_buttons.html.erb b/app/views/shared/_navbar_buttons.html.erb
index 4c81abd7..82aaca0c 100644
--- a/app/views/shared/_navbar_buttons.html.erb
+++ b/app/views/shared/_navbar_buttons.html.erb
@@ -1,6 +1,3 @@
-<%= link_to Docuseal.multitenant? ? console_redirect_index_path(redir: "#{Docuseal::CONSOLE_URL}/plans") : "#{Docuseal::CLOUD_URL}/sign_up?#{{ redir: "#{Docuseal::CONSOLE_URL}/on_premise" }.to_query}", class: 'hidden md:inline-flex btn btn-warning btn-sm', data: { prefetch: false } do %>
-  Upgrade
-<% end %>
 <% if signed_in? && current_user != true_user %>
   
   <%= render 'shared/test_alert' %>
diff --git a/app/views/shared/_title.html.erb b/app/views/shared/_title.html.erb
index 9830a7ca..19f4c4a4 100644
--- a/app/views/shared/_title.html.erb
+++ b/app/views/shared/_title.html.erb
@@ -1,2 +1,2 @@
 <%= render 'shared/logo' %>
-DocuSeal
+Corsar
diff --git a/app/views/users/_role_select.html.erb b/app/views/users/_role_select.html.erb
index b1d26c0f..f7823577 100644
--- a/app/views/users/_role_select.html.erb
+++ b/app/views/users/_role_select.html.erb
@@ -2,12 +2,7 @@
   <%= f.label :role, class: 'label' %>
   <%= f.select :role, nil, {}, class: 'base-select' do %>
     
-    
-    
+    
+    
   <% end %>
-  ">
-    <%= svg_icon('info_circle', class: 'w-4 h-4 inline align-text-bottom') %>
-    Unlock more user roles with DocuSeal Pro.
-    Learn More
-  
 
diff --git a/config/application.rb b/config/application.rb
index a120c74a..76cd22d5 100644
--- a/config/application.rb
+++ b/config/application.rb
@@ -26,7 +26,8 @@ module DocuSeal
     config.active_storage.draw_routes = ENV['MULTITENANT'] != 'true'
 
     config.i18n.available_locales = %i[en en-US en-GB es-ES fr-FR pt-PT de-DE it-IT es it de fr pl uk cs pt he nl ar ko]
-    config.i18n.fallbacks = [:en]
+    config.i18n.fallbacks = [:'pt-PT']
+    config.i18n.default_locale = :'pt-PT'
 
     config.exceptions_app = ->(env) { ErrorsController.action(:show).call(env) }
 
diff --git a/docker-compose.yml b/docker-compose.yml
index a30ce3a6..d5cd1e98 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -3,12 +3,13 @@ services:
     depends_on:
       postgres:
         condition: service_healthy
-    image: docuseal/docuseal:latest
+    build: .
     ports:
       - 3000:3000
     volumes:
       - ./docuseal:/data/docuseal
     environment:
+      - HOST=${HOST}
       - FORCE_SSL=${HOST}
       - DATABASE_URL=postgresql://postgres:postgres@postgres:5432/docuseal
 
@@ -26,14 +27,14 @@ services:
       timeout: 5s
       retries: 5
 
-  caddy:
-    image: caddy:latest
-    command: caddy reverse-proxy --from $HOST --to app:3000
-    ports:
-      - 80:80
-      - 443:443
-      - 443:443/udp
-    volumes:
-      - .:/data
-    environment:
-      - HOST=${HOST}
+        # caddy:
+        #   image: caddy:latest
+        #   command: caddy reverse-proxy --from $HOST --to app:3000
+        #   ports:
+        #     - 81:80
+        #     - 444:443
+        #     - 444:443/udp
+        #   volumes:
+        #     - .:/data
+        #   environment:
+        #     - HOST=${HOST}