You've already forked code_examples_server
mirror of
https://github.com/AdaCore/code_examples_server.git
synced 2026-02-12 12:45:18 -08:00
Add static resources and templates to the project
And initial CSS.
This commit is contained in:
5
compile_server/app/static/common.css
Normal file
5
compile_server/app/static/common.css
Normal file
@@ -0,0 +1,5 @@
|
||||
.editor_container{
|
||||
width: 60%;
|
||||
height: 30em;
|
||||
border: 1px solid #ddd;
|
||||
}
|
||||
13
langserv.gpr
13
langserv.gpr
@@ -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/**"
|
||||
);
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user