Skip to content

Commit

Permalink
moving things around
Browse files Browse the repository at this point in the history
  • Loading branch information
progrium committed Jun 25, 2012
1 parent ee56524 commit e0791f7
Show file tree
Hide file tree
Showing 71 changed files with 15 additions and 11 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
*.pyc
**/*.pyc

3 changes: 2 additions & 1 deletion README.md
@@ -1,3 +1,4 @@
# HackParty App


This is the application code for hackparty.org which manages user
accounts and the clone protocol for events.
2 changes: 1 addition & 1 deletion app.yaml
@@ -1,4 +1,4 @@
application: myapp
application: hackparty-domain
version: 1
runtime: python
api_version: 1
Expand Down
7 changes: 7 additions & 0 deletions app/__init__.py
@@ -0,0 +1,7 @@
from flask import Flask
import settings

app = Flask('hackparty')
app.config.from_object('app.settings')

import views
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 0 additions & 7 deletions application/__init__.py

This file was deleted.

Binary file removed application/static/favicon.ico
Binary file not shown.
4 changes: 2 additions & 2 deletions main.py
@@ -1,6 +1,6 @@
import sys, os

package_dir = "packages"
package_dir = "pkgs"
package_dir_path = os.path.join(os.path.dirname(__file__), package_dir)

# Allow unzipped packages to be imported
Expand All @@ -12,7 +12,7 @@
if filename.endswith((".zip", ".egg")):
sys.path.insert(0, "%s/%s" % (package_dir_path, filename))

from application import app
from app import app

def main():
from google.appengine.ext.webapp.util import run_wsgi_app
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit e0791f7

Please sign in to comment.