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
bin
folder 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
.png
or.svg
format). All this content is located in thepublic
folder, which is served by the HTTPS server instance. -
The
test
folder has some certificates that we only use for unit tests. Thoseserver.key
andserver.pem
files 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.