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
Improve the project to find the learn content.
Part of improving the development environment.
This commit is contained in:
15
langserv.gpr
15
langserv.gpr
@@ -1,12 +1,13 @@
|
||||
project langserv is
|
||||
|
||||
for Languages use ("Python", "Text", "HTML", "javascript", "css");
|
||||
for Languages use ("Python", "Text", "HTML", "javascript", "css", "ReST");
|
||||
|
||||
package Naming is
|
||||
for Implementation_Suffix ("Text") use ".txt";
|
||||
for Implementation_Suffix ("HTML") use ".txt";
|
||||
for Implementation_Suffix ("HTML") use ".html";
|
||||
for Implementation_Suffix ("javascript") use ".js";
|
||||
for Implementation_Suffix ("css") use ".css";
|
||||
for Implementation_Suffix ("ReST") use ".rst";
|
||||
end Naming;
|
||||
|
||||
for Source_Dirs use (-- The django base
|
||||
@@ -26,7 +27,15 @@ project langserv is
|
||||
"compile_server/app/static/",
|
||||
|
||||
-- The HTML templates
|
||||
"compile_server/app/templates/**"
|
||||
"compile_server/app/templates/**",
|
||||
|
||||
-- The learn engine
|
||||
"../learn/engine/sphinx",
|
||||
|
||||
-- The courses, books, labs
|
||||
"../learn/courses/**",
|
||||
"../learn/books/**",
|
||||
"../learn/labs/**"
|
||||
);
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user