Files
code_examples_server/langserv.gpr

51 lines
1.6 KiB
Plaintext
Raw Permalink Normal View History

2017-05-06 22:38:32 -04:00
project langserv is
for Languages use ("Python", "Text", "HTML", "javascript", "css", "ReST");
2017-05-06 22:38:32 -04:00
package Naming is
for Implementation_Suffix ("Text") use ".txt";
for Implementation_Suffix ("javascript") use ".js";
for Implementation_Suffix ("css") use ".css";
for Implementation_Suffix ("ReST") use ".rst";
2017-05-06 22:38:32 -04:00
end Naming;
for Source_Dirs use (-- The django base
".",
"compile_server",
-- The actual app
"compile_server/app",
-- Where the manage.py custom commands are
"compile_server/app/management/commands",
-- Some design docs
"design",
-- The static resources
"compile_server/app/static/",
-- The HTML templates
"compile_server/app/templates/**",
-- The learn engine
"../learn/engine/sphinx",
"../learn/engine/sphinx/learn_theme/static/js/",
-- The courses, books, labs
"../learn/",
"../learn/courses/**",
"../learn/books/**",
"../learn/labs/**",
-- The infrastructure
"infrastructure",
-- The bits that are deployed on the container
"infrastructure/container_payload"
2017-05-06 22:38:32 -04:00
);
end langserv;