Skip to content

Commit

Permalink
Change name s/deplo.io/Deploio/g
Browse files Browse the repository at this point in the history
  • Loading branch information
thomhug committed Sep 5, 2024
1 parent 1b6d5f4 commit 5dbaf60
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# deploio-examples

This repository hosts example apps for different languages and frameworks that
are being supported by deplo.io. Please also check out our [language specific
are being supported by Deploio. Please also check out our [language specific
documentation](https://docs.nine.ch/docs/category/languages) for more details.

## Go
Expand Down Expand Up @@ -87,7 +87,7 @@ For static sites we have two examples:

## Dockerfile

With Dockerfile builds, deplo.io can build any app that can be built using a
With Dockerfile builds, Deploio can build any app that can be built using a
Dockerfile. To demonstrate this we have the following sample apps:

* a very basic Rust app:
Expand Down
2 changes: 1 addition & 1 deletion dockerfile/rust/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<head>
<meta charset="UTF-8" />
<title>Dockerfile Rust App on deplo.io</title>
<title>Dockerfile Rust App on Deploio</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="" />
<meta name="theme-color" content="">
Expand Down
2 changes: 1 addition & 1 deletion php/symfony/templates/deploio.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<head>
<meta charset="UTF-8" />
<title>Symfony App on deplo.io</title>
<title>Symfony App on Deploio</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="" />
<meta name="theme-color" content="">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

def add_welcome_messages(apps, schema_editor):
WelcomeMessage = apps.get_model("index", "WelcomeMessage")
for msg in ["Welcome to deplo.io", "Deployments made easy", "This is a sample Django app"]:
for msg in ["Welcome to Deploio", "Deployments made easy", "This is a sample Django app"]:
temp = WelcomeMessage(text=msg)
temp.save()

Expand Down
2 changes: 1 addition & 1 deletion python/django/index/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<head>
<meta charset="UTF-8" />
<title>Django App on deplo.io</title>
<title>Django App on Deploio</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="" />
<meta name="theme-color" content="">
Expand Down
2 changes: 1 addition & 1 deletion ruby/rails-basic/app/views/layouts/application.html.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>Rails App on deplo.io</title>
<title>Rails App on Deploio</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
Expand Down

0 comments on commit 5dbaf60

Please sign in to comment.