Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 1.95 KB

README.md

File metadata and controls

19 lines (13 loc) · 1.95 KB

Website icon

Official repository of the fluttercompletereference.com website

CI status Stars count on GitHub License type


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 the main() entry-point that starts the server. Helper methods and configurations of the HTTP/HTTPS servers are inside lib.

  • 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 the public folder, which is served by the HTTPS server instance.

  • The test folder has some certificates that we only use for unit tests. Those server.key and server.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.