-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
renamed asset folder, converted views to slang, added redirect, creat…
…ed build tasks for sublime text
- Loading branch information
1 parent
a891cde
commit e63b0ba
Showing
12 changed files
with
94 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
lib | ||
app | ||
bin | ||
*.sublime-workspace | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes
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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{ | ||
"folders": | ||
[ | ||
{ | ||
"path": "spec", | ||
"name": "Tests" | ||
}, | ||
{ | ||
"path": "src", | ||
"name": "Source Code" | ||
}, | ||
{ | ||
"path": "assets", | ||
"name": "Static Files" | ||
} | ||
], | ||
"settings": | ||
{ | ||
"tab_size": 2 | ||
}, | ||
"build_systems": | ||
[ | ||
{ | ||
"name": "Spider-Gazelle (dev)", | ||
"shell_cmd": "crystal build --error-trace ./src/app.cr", | ||
"working_dir": "$project_path", | ||
"quiet": false | ||
}, | ||
{ | ||
"name": "Spider-Gazelle (release)", | ||
"shell_cmd": "crystal build --release ./src/app.cr", | ||
"working_dir": "$project_path", | ||
"quiet": false | ||
}, | ||
{ | ||
"name": "Spider-Gazelle (static)", | ||
"shell_cmd": "crystal build --release --static ./src/app.cr", | ||
"working_dir": "$project_path", | ||
"quiet": false | ||
}, | ||
{ | ||
"name": "Spider-Gazelle (start)", | ||
"shell_cmd": "nohup ./app &", | ||
"working_dir": "$project_path", | ||
"quiet": false | ||
}, | ||
{ | ||
"name": "Spider-Gazelle (stop)", | ||
"shell_cmd": "pkill -f app", | ||
"working_dir": "$project_path", | ||
"quiet": false | ||
}, | ||
{ | ||
"name": "Spider-Gazelle (test)", | ||
"shell_cmd": "curl 127.0.0.1:3000", | ||
"working_dir": "$project_path", | ||
"quiet": false | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
class Index < Application | ||
base "/" | ||
|
||
def index | ||
redirect_to Dashboard.index | ||
end | ||
end |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
doctype html | ||
html lang="en" | ||
head | ||
title Welcome | ||
link rel="shortcut icon" href="/favicon.ico" | ||
body style="text-align: center" | ||
img src="/sg.png" alt="OS-Probe" | ||
br | ||
h1 style="color: red" | ||
= welcome_text | ||
|