2017-05-06 22:38:32 -04:00
|
|
|
project langserv is
|
|
|
|
|
|
2019-01-07 14:16:39 -05:00
|
|
|
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";
|
2017-09-03 09:50:35 -04:00
|
|
|
for Implementation_Suffix ("javascript") use ".js";
|
|
|
|
|
for Implementation_Suffix ("css") use ".css";
|
2019-01-07 14:16:39 -05:00
|
|
|
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
|
2017-09-03 09:50:35 -04:00
|
|
|
"design",
|
|
|
|
|
|
|
|
|
|
-- The static resources
|
|
|
|
|
"compile_server/app/static/",
|
|
|
|
|
|
|
|
|
|
-- The HTML templates
|
2019-01-07 14:16:39 -05:00
|
|
|
"compile_server/app/templates/**",
|
|
|
|
|
|
|
|
|
|
-- The learn engine
|
|
|
|
|
"../learn/engine/sphinx",
|
2019-02-01 14:54:28 -05:00
|
|
|
"../learn/engine/sphinx/learn_theme/static/js/",
|
2019-01-07 14:16:39 -05:00
|
|
|
|
|
|
|
|
-- The courses, books, labs
|
2019-01-25 11:23:15 -05:00
|
|
|
"../learn/",
|
2019-01-07 14:16:39 -05:00
|
|
|
"../learn/courses/**",
|
|
|
|
|
"../learn/books/**",
|
2019-01-22 13:07:20 -05:00
|
|
|
"../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;
|