Skip to content

Commit

Permalink
Merge pull request #19 from ninech/dot-removal
Browse files Browse the repository at this point in the history
Dot removal
  • Loading branch information
thomhug authored Sep 10, 2024
2 parents 19c2ad5 + 5dbaf60 commit 309cb82
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 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 go/.deploio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ port: 5678
replicas: 1
env:
- name: RESPONSE_TEXT
value: "Hello from a Go deplo.io app!"
value: "Hello from a Go Deploio app!"
2 changes: 1 addition & 1 deletion go/index.html.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<head>
<meta charset="UTF-8" />
<title>Go App on deplo.io</title>
<title>Go 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 nodejs/nextjs/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Inter } from 'next/font/google'
const inter = Inter({ subsets: ['latin'] })

export const metadata: Metadata = {
title: 'Next.js App on deplo.io',
title: 'Next.js App on Deploio',
description: 'Generated by create next app',
}

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
2 changes: 1 addition & 1 deletion static/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<head>
<meta charset="UTF-8" />
<title>Static Site on deplo.io</title>
<title>Static Site 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 static/react/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Static Site on deplo.io</title>
<title>Static Site on Deploio</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="" />
<meta name="theme-color" content="">
Expand Down

0 comments on commit 309cb82

Please sign in to comment.