Upload files to "/"

This commit is contained in:
chris 2025-03-24 01:41:57 +00:00
commit 47efd65b8b
5 changed files with 83 additions and 0 deletions

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
**/__pycache__/**
**.pyc
.idea/**
**/venv
log/**

10
readme.md Normal file
View File

@ -0,0 +1,10 @@
# Quarter Internal Site
## Intro
This is the internal quarter site, it is designed to provide links to some useful documentation, employee info, the status of development/production servers and other useful things for quarter employees.
## Basic Setup
This site, is built using docker containers running webservers hosting a flask application. It provides integrations to the company's gsuite account to allow for the retrieval and updating of employee information.
## Future plans
The plan for this site is to integrate user SSH keys and do allow it to act as a one-stop-shop for updating credentials for users accounts on local resources (ie network storage and dev servers) as well as for external gsuite platforms.

25
requirements.txt Normal file
View File

@ -0,0 +1,25 @@
click==8.0.1
Flask==2.0.1
flask-ldap3-login==0.9.16
Flask-Login==0.5.0
Flask-WTF==0.15.1
itsdangerous==2.0.1
Jinja2==3.0.1
ldap3==2.9
MarkupSafe==2.0.1
pexpect==4.8.0
ptyprocess==0.7.0
pyasn1==0.4.8
pyasn1-modules==0.2.8
python-ldap==3.3.1
Werkzeug==2.0.1
WTForms==2.3.3
uwsgi==2.0.19.1
ssh-ldap-pubkey==1.3.3
python-ldap==3.3.1
requests==2.25.1
authlib==1.0.0
google-api-python-client==2.42.0
google-auth==2.6.2
boto3==1.26.106

39
summary.rtf Normal file
View File

@ -0,0 +1,39 @@
{\rtf1\ansi\ansicpg1252\deff0\deflang1033
{\fonttbl{\f0\fswiss\fcharset0 Arial;}}
{\*\generator OpenAI GPT-4;}
\viewkind4\uc1\pard\qc\fs28\bf
Quarter Token Investment Summary
\fs22\bf0
\par
HPI Tokens and Asset Tokens
\fs20
\par
\pard\ql
1. Introduction
\par
Quarter offers two distinct token investment opportunities: HPI Tokens and Asset Tokens. This document provides an overview of these tokens, their economic models, and their potential returns for investors. Quarter's goal is to sell 20% of the offering as HPI Tokens (for operating capital) and 80% as bundles (Asset Tokens and HPI Tokens).
\par
\par
2. Token Offerings Overview
\par
\pard\fi720 A. \b HPI Tokens:\b0\par
HPI Tokens provide investors with rights to a pool of appreciation value for every house on the Quarter platform. The economic model is designed to reward early investors and potentially outperform baseline home price appreciation as the network grows. Secondary market participants may value the tokens based on the platform's growth trajectory.
\par
\pard\fi720 B. \b Asset Tokens:\b0\par
Asset Tokens grant holders specific benefits associated with individual properties, including monthly payments, sale proceeds, and appreciation value rights.
\par
\par
3. Potential Returns for Investors
\par
\pard\fi720 A. \b HPI Token Returns:\b0\par
Assuming a $50M total investment, a $10M investment in HPI Tokens could yield annualized returns ranging from 12.12% to 44.42%, depending on the holding period and market value premium.
\par
\pard\fi720 B. \b Bundle Returns:\b0\par
Early bundle subscribers may see higher-than-HPI returns on their HPI Tokens due to the overcollateralization of the HPI Pool. With a potential annualized return rate of 7.62% when including the Tenants in Common (TIC) fee, this investment option allows investors to realize significant returns while still investing in a real estate-based asset.
\par
\par
4. Investment Timing and Returns
\par
Investing early in Quarter's token offerings may yield higher returns due to the convergence of book and market value. The creation of a secondary market can potentially lead to venture capital-like returns for investors while still maintaining a real estate-based asset foundation. For example, the first $40M real estate capital may generate a rate of return of 45.51%, while subsequent investments could generate lower rates of return.
\par
}

3
uwsgi.py Normal file
View File

@ -0,0 +1,3 @@
from app import create_app
application=create_app('QUARTER_INTERNAL')