rename client-new to client and add README
This commit is contained in:
+1
-1
@@ -3,7 +3,7 @@ node_modules/**
|
||||
.bower-tmp/**
|
||||
.bower-registry/**
|
||||
website/client-old/**
|
||||
website/client-new/**
|
||||
website/client/**
|
||||
website/views/**
|
||||
website/build/**
|
||||
test/**
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
This folder contains the source files for the new client side of that is being developed.
|
||||
|
||||
The old client side files can be found in /website/client-old, they are still used on Habitica.com while the redesign is in progress.
|
||||
@@ -16,5 +16,5 @@ module.exports = function staticMiddleware (expressApp) {
|
||||
expressApp.use(express.static(PUBLIC_DIR));
|
||||
|
||||
// Expose new client when not in production
|
||||
if (!IS_PROD) expressApp.use('/new-app', express.static(`${PUBLIC_DIR}/../client-new`));
|
||||
if (!IS_PROD) expressApp.use('/new-app', express.static(`${PUBLIC_DIR}/../client`));
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user