Official repository of the fluttercompletereference.com website
This repository contains the source code of the fluttercompletereference.com website. The server was created using Dart's official shelf package. The most relevant parts of this CLI application are:
-
The
binfolder contains themain()entry-point that starts the server. Helper methods and configurations of the HTTP/HTTPS servers are insidelib. -
The website comprises three static HTML files, a minified CSS stylesheet and some image assets (in
.pngor.svgformat). All this content is located in thepublicfolder, which is served by the HTTPS server instance. -
The
testfolder has some certificates that we only use for unit tests. Thoseserver.keyandserver.pemfiles are not used in the production server.
To see how we generate the pages and validate the HTML code, check the README.md in the tool folder.