diff --git a/gymboard-cdn/.gitignore b/gymboard-cdn/.gitignore new file mode 100644 index 0000000..74aff26 --- /dev/null +++ b/gymboard-cdn/.gitignore @@ -0,0 +1,15 @@ +.dub +docs.json +__dummy.html +docs/ +/gymboard-cdn +gymboard-cdn.so +gymboard-cdn.dylib +gymboard-cdn.dll +gymboard-cdn.a +gymboard-cdn.lib +gymboard-cdn-test-* +*.exe +*.o +*.obj +*.lst diff --git a/gymboard-cdn/dub.json b/gymboard-cdn/dub.json new file mode 100644 index 0000000..0baf7d5 --- /dev/null +++ b/gymboard-cdn/dub.json @@ -0,0 +1,12 @@ +{ + "authors": [ + "Andrew Lalis" + ], + "copyright": "Copyright © 2023, Andrew Lalis", + "dependencies": { + "handy-httpd": "~>4.0.2" + }, + "description": "Content delivery network for Gymboard.", + "license": "proprietary", + "name": "gymboard-cdn" +} \ No newline at end of file diff --git a/gymboard-cdn/source/app.d b/gymboard-cdn/source/app.d new file mode 100644 index 0000000..c3eec7f --- /dev/null +++ b/gymboard-cdn/source/app.d @@ -0,0 +1,6 @@ +import std.stdio; + +void main() +{ + writeln("Edit source/app.d to start your project."); +}