Initial Commit

This commit is contained in:
David Todd 2019-08-18 00:45:24 -05:00
commit 0435b0e856
4 changed files with 67 additions and 0 deletions

36
.editorconfig Normal file
View File

@ -0,0 +1,36 @@
# http://editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
# Use 4 spaces for the Python files
[*.py]
indent_size = 4
max_line_length = 80
# The JSON files contain newlines inconsistently
[*.json]
insert_final_newline = ignore
# Minified JavaScript files shouldn't be changed
[**.min.js]
indent_style = ignore
insert_final_newline = ignore
# Makefiles always use tabs for indentation
[Makefile]
indent_style = tab
# Batch files use tabs for indentation
[*.bat]
indent_style = tab
[*.md]
trim_trailing_whitespace = false

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
venv/*
.vscode*

21
LICENSE Normal file
View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2018 David Todd (c0de@c0defox.es)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

8
Readme.md Normal file
View File

@ -0,0 +1,8 @@
# lob.li API - Link Objectively
A few years ago I created [lob.li](https://lob.li). It was designed in PHP 5 and was switched from a MySQL database to Redis realitively easily. The service is still functional today, running on PHP 7, but it's significantly outdated, and API features that were promised to come never did. This is an attempt to create a new version of the API, coded in Python 3 as that's the language I'm most comfortable with currently.
## Requirements
* [Bottle](https://bottlepy.org/docs/dev/) - This handles the Routes and Jinja2 templates
* [CherryPy](https://cherrypy.org/) - This is responsible for handling the WGSI processes
* [Beaker](https://beaker.readthedocs.io/en/latest/configuration.html#) - Responsible for handling user sessions