diff --git a/conf/apache.conf b/conf/apache.conf
deleted file mode 100644
index c3644356e6..0000000000
--- a/conf/apache.conf
+++ /dev/null
@@ -1,36 +0,0 @@
-# Sample httpd.conf extension ot start wnframework
-
-# Port on which you want to run wnframework
-Listen 8080
-NameVirtualHost *:8080
-
- ServerName localhost
-
- # your erpnext folder
- DocumentRoot /var/www/erpnext/public/
-
- AddHandler cgi-script .cgi .xml .py
- AddType application/vnd.ms-fontobject .eot
- AddType font/ttf .ttf
- AddType font/otf .otf
- AddType application/x-font-woff .woff
-
-
- # directory specific options
- Options -Indexes +FollowSymLinks +ExecCGI
-
- # directory's index file
- DirectoryIndex web.py
-
- AllowOverride all
- Order Allow,Deny
- Allow from all
-
- # rewrite rule
- RewriteEngine on
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteCond %{REQUEST_FILENAME} !-l
- RewriteRule ^([^/]+)$ /web.py?page=$1 [QSA,L]
-
-
\ No newline at end of file
diff --git a/conf/app.js b/conf/app.js
deleted file mode 100644
index f0164304ce..0000000000
--- a/conf/app.js
+++ /dev/null
@@ -1,18 +0,0 @@
-wn.app = {
- name: 'Yourapp',
- license: 'GNU/GPL - Usage Condition: All "yourapp" branding must be kept as it is',
- source: 'https://github.com/webnotes/yourapp',
- publisher: 'Your Company',
- copyright: '© Your Company',
- version: window._version_number
-}
-
-// call startup when ready
-$(document).bind('ready', function() {
- startup();
-});
-
-$(document).bind('toolbar_setup', function() {
- $('.brand').html('yourbrand\
- ');
-});