Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tesu committed Nov 24, 2017
0 parents commit bc7025b
Show file tree
Hide file tree
Showing 27 changed files with 902 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
@@ -0,0 +1,8 @@
*.pyc
*.pkl
*.db
tesu/settings.cfg
tesu/scripts/
tesu/static/misc/
tesu/static/uploads/

4 changes: 4 additions & 0 deletions run.py
@@ -0,0 +1,4 @@
#!/usr/bin/env python3
from tesu import app
app.run(debug=True)

11 changes: 11 additions & 0 deletions setup.py
@@ -0,0 +1,11 @@
from setuptools

setup(
name='tesu',
packages=['tesu'],
include_package_data=True,
install_requires=[
'flask',
'markdown',
],
)
2 changes: 2 additions & 0 deletions tesu/__init__.py
@@ -0,0 +1,2 @@
from .tesu import app

18 changes: 18 additions & 0 deletions tesu/schema.sql
@@ -0,0 +1,18 @@
drop table if exists posts;
create table posts (
id integer primary key autoincrement,
timestamp datetime default current_timestamp,
title text not null,
slug text not null,
'text' text not null
);

drop table if exists projects;
create table projects (
id integer primary key autoincrement,
name text not null,
description text not null,
url not null,
urlname text default 'link'
);

Binary file added tesu/static/favicon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tesu/static/fonts/SCE-PS3-RD-B-LATIN.woff2
Binary file not shown.
Binary file added tesu/static/fonts/SCE-PS3-RD-BI-LATIN.woff2
Binary file not shown.
Binary file added tesu/static/fonts/SCE-PS3-RD-I-LATIN.woff2
Binary file not shown.
Binary file added tesu/static/fonts/SCE-PS3-RD-R-LATIN.woff2
Binary file not shown.
Binary file added tesu/static/hr.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tesu/static/icons.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit bc7025b

Please sign in to comment.