├── .editorconfig ├── CNAME ├── README.md ├── index.html └── logo.png /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = tab 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [package.json] 12 | indent_style = space 13 | indent_size = 2 14 | 15 | [*.yml] 16 | indent_style = space 17 | indent_size = 2 18 | 19 | [*.ts] 20 | quote_type = single 21 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | faircode.io -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Faircode Website 2 | 3 | Fair-code is not a software license. It describes a software model where software: 4 | 5 | - is generally free to use and can be distributed by anybody 6 | - has its source code openly available 7 | - can be extended by anybody in public and private communities 8 | - is commercially restricted by its authors 9 | 10 | 11 | More resources can be found at [https://faircode.io](https://faircode.io) -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |