-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
83 changed files
with
343 additions
and
352 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# @lagon/cli | ||
# @lagoss/cli | ||
|
||
## 0.7.8 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# @lagon/runtime | ||
# @lagoss/runtime | ||
|
||
## 0.3.19 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# @lagon/runtime-utils | ||
# @lagoss/runtime-utils | ||
|
||
## 0.2.2 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"name": "@lagon/runtime-utils", | ||
"version": "0.2.2", | ||
"description": "JavaScript Serverless Runtime for Lagon", | ||
"private": true, | ||
"scripts": { | ||
"test": "cargo test -F test" | ||
} | ||
"name": "@lagoss/runtime-utils", | ||
"version": "0.2.2", | ||
"description": "JavaScript Serverless Runtime for Lagoss", | ||
"private": true, | ||
"scripts": { | ||
"test": "cargo test -F test" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,32 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<script src="https://cdn.tailwindcss.com"></script> | ||
<title>Forbidden</title> | ||
</head> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<script src="https://cdn.tailwindcss.com"></script> | ||
<title>Forbidden</title> | ||
</head> | ||
|
||
<body> | ||
<section class="w-screen h-screen flex items-center justify-center flex-col dark:bg-stone-800"> | ||
<h1 class="font-semibold text-3xl text-gray-900 dark:text-gray-200 mb-1">Forbidden</h1> | ||
<span class="uppercase text-lg text-blue-500 mb-6">403</span> | ||
<p class="text-base text-gray-800 dark:text-gray-300 text-center">You can't access this deployment.</p> | ||
</section> | ||
|
||
<footer class="absolute bottom-4 left-[50%] transform -translate-x-[50%]"> | ||
<a href="https://lagon.app" target="_blank"> | ||
<img class="h-6 dark:hidden" alt="Lagon logo" src="https://github.com/lagonapp/lagon/blob/main/assets/logo-black.png?raw=true" /> | ||
<img class="h-6 hidden dark:block" alt="Lagon logo for dark mode" src="https://github.com/lagonapp/lagon/blob/main/assets/logo-white.png?raw=true" /> | ||
</a> | ||
</footer> | ||
</body> | ||
<body> | ||
<section class="flex h-screen w-screen flex-col items-center justify-center dark:bg-stone-800"> | ||
<h1 class="mb-1 text-3xl font-semibold text-gray-900 dark:text-gray-200">Forbidden</h1> | ||
<span class="mb-6 text-lg uppercase text-blue-500">403</span> | ||
<p class="text-center text-base text-gray-800 dark:text-gray-300">You can't access this deployment.</p> | ||
</section> | ||
|
||
<footer class="absolute bottom-4 left-[50%] -translate-x-[50%] transform"> | ||
<a href="https://lagon.app" target="_blank"> | ||
<img | ||
class="h-6 dark:hidden" | ||
alt="Lagoss logo" | ||
src="https://github.com/lagonapp/lagon/blob/main/assets/logo-black.png?raw=true" | ||
/> | ||
<img | ||
class="hidden h-6 dark:block" | ||
alt="Lagoss logo for dark mode" | ||
src="https://github.com/lagonapp/lagon/blob/main/assets/logo-white.png?raw=true" | ||
/> | ||
</a> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,32 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<script src="https://cdn.tailwindcss.com"></script> | ||
<title>Deployment not found</title> | ||
</head> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<script src="https://cdn.tailwindcss.com"></script> | ||
<title>Deployment not found</title> | ||
</head> | ||
|
||
<body> | ||
<section class="w-screen h-screen flex items-center justify-center flex-col dark:bg-stone-800"> | ||
<h1 class="font-semibold text-3xl text-gray-900 dark:text-gray-200 mb-1">Deployment not found</h1> | ||
<span class="uppercase text-lg text-blue-500 mb-6">404</span> | ||
<p class="text-base text-gray-800 dark:text-gray-300 text-center">This Deployment does not exist.</p> | ||
</section> | ||
|
||
<footer class="absolute bottom-4 left-[50%] transform -translate-x-[50%]"> | ||
<a href="https://lagon.app" target="_blank"> | ||
<img class="h-6 dark:hidden" alt="Lagon logo" src="https://github.com/lagonapp/lagon/blob/main/assets/logo-black.png?raw=true" /> | ||
<img class="h-6 hidden dark:block" alt="Lagon logo for dark mode" src="https://github.com/lagonapp/lagon/blob/main/assets/logo-white.png?raw=true" /> | ||
</a> | ||
</footer> | ||
</body> | ||
<body> | ||
<section class="flex h-screen w-screen flex-col items-center justify-center dark:bg-stone-800"> | ||
<h1 class="mb-1 text-3xl font-semibold text-gray-900 dark:text-gray-200">Deployment not found</h1> | ||
<span class="mb-6 text-lg uppercase text-blue-500">404</span> | ||
<p class="text-center text-base text-gray-800 dark:text-gray-300">This Deployment does not exist.</p> | ||
</section> | ||
|
||
<footer class="absolute bottom-4 left-[50%] -translate-x-[50%] transform"> | ||
<a href="https://lagon.app" target="_blank"> | ||
<img | ||
class="h-6 dark:hidden" | ||
alt="Lagoss logo" | ||
src="https://github.com/lagonapp/lagon/blob/main/assets/logo-black.png?raw=true" | ||
/> | ||
<img | ||
class="hidden h-6 dark:block" | ||
alt="Lagoss logo for dark mode" | ||
src="https://github.com/lagonapp/lagon/blob/main/assets/logo-white.png?raw=true" | ||
/> | ||
</a> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,36 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<script src="https://cdn.tailwindcss.com"></script> | ||
<title>Function errored</title> | ||
</head> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<script src="https://cdn.tailwindcss.com"></script> | ||
<title>Function errored</title> | ||
</head> | ||
|
||
<body> | ||
<section class="w-screen h-screen flex items-center justify-center flex-col dark:bg-stone-800"> | ||
<h1 class="font-semibold text-3xl text-gray-900 dark:text-gray-200 mb-1">Function errored</h1> | ||
<span class="uppercase text-lg text-blue-500 mb-6">500</span> | ||
<p class="text-base text-gray-800 dark:text-gray-300 text-center"> | ||
An error occurred while running this Function. | ||
<br /> | ||
If you are the owner, check the logs. | ||
</p> | ||
</section> | ||
|
||
<footer class="absolute bottom-4 left-[50%] transform -translate-x-[50%]"> | ||
<a href="https://lagon.app" target="_blank"> | ||
<img class="h-6 dark:hidden" alt="Lagon logo" src="https://github.com/lagonapp/lagon/blob/main/assets/logo-black.png?raw=true" /> | ||
<img class="h-6 hidden dark:block" alt="Lagon logo for dark mode" src="https://github.com/lagonapp/lagon/blob/main/assets/logo-white.png?raw=true" /> | ||
</a> | ||
</footer> | ||
</body> | ||
<body> | ||
<section class="flex h-screen w-screen flex-col items-center justify-center dark:bg-stone-800"> | ||
<h1 class="mb-1 text-3xl font-semibold text-gray-900 dark:text-gray-200">Function errored</h1> | ||
<span class="mb-6 text-lg uppercase text-blue-500">500</span> | ||
<p class="text-center text-base text-gray-800 dark:text-gray-300"> | ||
An error occurred while running this Function. | ||
<br /> | ||
If you are the owner, check the logs. | ||
</p> | ||
</section> | ||
|
||
<footer class="absolute bottom-4 left-[50%] -translate-x-[50%] transform"> | ||
<a href="https://lagon.app" target="_blank"> | ||
<img | ||
class="h-6 dark:hidden" | ||
alt="Lagoss logo" | ||
src="https://github.com/lagonapp/lagon/blob/main/assets/logo-black.png?raw=true" | ||
/> | ||
<img | ||
class="hidden h-6 dark:block" | ||
alt="Lagoss logo for dark mode" | ||
src="https://github.com/lagonapp/lagon/blob/main/assets/logo-white.png?raw=true" | ||
/> | ||
</a> | ||
</footer> | ||
</body> | ||
</html> |
Oops, something went wrong.