librelist archives

« back to archive

Small App in Flask

Small App in Flask

From:
kracekumar ramaraju
Date:
2011-11-17 @ 17:36
Hello
        I have developed a small chat room application. It is very basic
and I have used redis, jinja2.
Here is the code. It could be helpful if you can share your views about
this app.

Source:https://github.com/kracekumar/Gummi
I have online version at http://kracekumar.com/gummi


-- 
*
"Talk is cheap, show me the code" - Linus Torvalds
Winning Regards
KraceKumar.R
http://kracekumar.wordpress.com
+91-97906-58304
*
*+91-85530-29521*
*
*

Re: [flask] Small App in Flask

From:
Joe Esposito
Date:
2011-11-17 @ 20:39
Pretty cool. I tried visiting the site and it takes me to a WebFaction
"Site not configured" page.

Some feedback for your Git repo: you should keep the 'build' directory out
of version control. Likewise, the .pyc files shouldn't be in there either.
A .gitignore file will take care of this.

For example, here's what my typical .gitignore looks like:

# Environment-specific files such as configuration, logs, and setup
build/
logs/
instance/
*.egg-info

# Python bytecode files
*.pyc

# Misc and OS files
Desktop.ini
Thumbs.db
.DS_Store



On Thu, Nov 17, 2011 at 12:36 PM, kracekumar ramaraju <
kracethekingmaker@gmail.com> wrote:

> Hello
>         I have developed a small chat room application. It is very basic
> and I have used redis, jinja2.
> Here is the code. It could be helpful if you can share your views about
> this app.
>
>  Source:https://github.com/kracekumar/Gummi
> I have online version at http://kracekumar.com/gummi
>
>
> --
> *
> "Talk is cheap, show me the code" - Linus Torvalds
> Winning Regards
> KraceKumar.R
> http://kracekumar.wordpress.com
> +91-97906-58304
> *
> *+91-85530-29521*
> *
> *
>
>

Re: [flask] Small App in Flask

From:
kracekumar ramaraju
Date:
2011-11-18 @ 01:48
On Fri, Nov 18, 2011 at 2:09 AM, Joe Esposito <espo58@gmail.com> wrote:

> Pretty cool. I tried visiting the site and it takes me to a WebFaction
> "Site not configured" page.


Thanks for pulling out time to visit the site . Site is actually up, the
one issue I am facing with webfaction is if you type
kracekumar.com/gummiyou will end up facing site not configured or if
you visit
www.kracekumar.com.

Type complete URL: www.kracekumar.com/gummi, it works. :)


>
> Some feedback for your Git repo: you should keep the 'build' directory out
> of version control. Likewise, the .pyc files shouldn't be in there either.
> A .gitignore file will take care of this.
>
> For example, here's what my typical .gitignore looks like:
>
> # Environment-specific files such as configuration, logs, and setup
> build/
> logs/
> instance/
> *.egg-info
>
> # Python bytecode files
> *.pyc
>
> # Misc and OS files
> Desktop.ini
> Thumbs.db
> .DS_Store
>
>
Yes you are correct, I didn't know previously about this, now I added
.gitignore file and since my code is tracked by git, I used git rm --cached
*pyc and git rm --cached *pyc


>
> On Thu, Nov 17, 2011 at 12:36 PM, kracekumar ramaraju <
> kracethekingmaker@gmail.com> wrote:
>
>> Hello
>>         I have developed a small chat room application. It is very basic
>> and I have used redis, jinja2.
>> Here is the code. It could be helpful if you can share your views about
>> this app.
>>
>>  Source:https://github.com/kracekumar/Gummi
>> I have online version at http://kracekumar.com/gummi
>>
>>
>> --
>> *
>> "Talk is cheap, show me the code" - Linus Torvalds
>> Winning Regards
>> KraceKumar.R
>> http://kracekumar.wordpress.com
>> +91-97906-58304
>> *
>> *+91-85530-29521*
>> *
>> *
>>
>>
>


-- 
*
"Talk is cheap, show me the code" - Linus Torvalds
Winning Regards
KraceKumar.R
http://kracekumar.wordpress.com
+91-97906-58304
*
*+91-85530-29521*
*
*