first commit
This commit is contained in:
parent
55ca4dba84
commit
4d5c298519
7 changed files with 55 additions and 0 deletions
4
.replit
Normal file
4
.replit
Normal file
|
@ -0,0 +1,4 @@
|
|||
run = "php -S 0.0.0.0:8000 -t ."
|
||||
|
||||
entrypoint = "index.php"
|
||||
|
5
data/locale/en_US/strings/main.ini
Normal file
5
data/locale/en_US/strings/main.ini
Normal file
|
@ -0,0 +1,5 @@
|
|||
interactions[basic][cancel] = "Cancel"
|
||||
interactions[basic][no] = "No"
|
||||
interactions[basic][okay] = "OK"
|
||||
interactions[basic][yes] = "Yes"
|
||||
|
3
data/locale/en_US/strings/search.ini
Normal file
3
data/locale/en_US/strings/search.ini
Normal file
|
@ -0,0 +1,3 @@
|
|||
results[found] = "found $ results"
|
||||
results[foundonlyone] = "found 1 result"
|
||||
results[none] = "no results found"
|
1
data/locale/en_US/strings/theme.ini
Normal file
1
data/locale/en_US/strings/theme.ini
Normal file
|
@ -0,0 +1 @@
|
|||
interactions[choose][tp][acceptnew] = "Accept"
|
15
index.php
Normal file
15
index.php
Normal file
|
@ -0,0 +1,15 @@
|
|||
<html>
|
||||
<head>
|
||||
<title><?</title>
|
||||
</head>
|
||||
<body>
|
||||
<?php echo '<p>Hello World</p>'; ?>
|
||||
|
||||
<!--
|
||||
This script places a badge on your repl's full-browser view back to your repl's cover
|
||||
page. Try various colors for the theme: dark, light, red, orange, yellow, lime, green,
|
||||
teal, blue, blurple, magenta, pink!
|
||||
-->
|
||||
<script src="https://replit.com/public/js/replit-badge.js" theme="blue" defer></script>
|
||||
</body>
|
||||
</html>
|
5
replit.nix
Normal file
5
replit.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ pkgs }: {
|
||||
deps = [
|
||||
pkgs.php74
|
||||
];
|
||||
}
|
22
serve.ini
Normal file
22
serve.ini
Normal file
|
@ -0,0 +1,22 @@
|
|||
[META]
|
||||
name = "superTinySearch"
|
||||
version = [0, 0, 0]
|
||||
maintain[][name] = "brendan Berger"
|
||||
maintain[][email] = "whotookelburg"
|
||||
svn = "<>"
|
||||
|
||||
[FEATURES]
|
||||
langs[] = "en_US"
|
||||
regions[] = "us"
|
||||
|
||||
[FEATURES.APPLETS]
|
||||
enabled = false
|
||||
runtimes[] = "ecmascript"
|
||||
|
||||
[FEATURES.UI]
|
||||
themes[] = "default"
|
||||
default = "default"
|
||||
|
||||
[INDEX]
|
||||
sites[] = "none"
|
||||
|
Loading…
Reference in a new issue