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
34 lines
1014 B
Plaintext
34 lines
1014 B
Plaintext
project langserv is
|
|
|
|
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
|
|
".",
|
|
"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/**"
|
|
);
|
|
|
|
|
|
end langserv;
|