Add static resources and templates to the project

And initial CSS.
This commit is contained in:
Nicolas Setton
2017-09-03 09:50:35 -04:00
parent 0bd8d17a43
commit 99739e813f
2 changed files with 16 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
.editor_container{
width: 60%;
height: 30em;
border: 1px solid #ddd;
}

View File

@@ -1,9 +1,12 @@
project langserv is
for Languages use ("Python", "Text");
for Languages use ("Python", "Text", "HTML", "javascript", "css");
package Naming is
for Implementation_Suffix ("Text") use ".txt";
for Implementation_Suffix ("HTML") use ".txt";
for Implementation_Suffix ("javascript") use ".js";
for Implementation_Suffix ("css") use ".css";
end Naming;
for Source_Dirs use (-- The django base
@@ -17,7 +20,13 @@ project langserv is
"compile_server/app/management/commands",
-- Some design docs
"design"
"design",
-- The static resources
"compile_server/app/static/",
-- The HTML templates
"compile_server/app/templates/**"
);