Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade to a4 and add automatic-translations #3

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ async function go() {
// your repo name followed by a -, however if you plan to use a
// cheap Atlas cluster (below M10), you must use a unique prefix less
// than 12 characters (before the -).
shortNamePrefix: process.env.APOS_PREFIX || 'a3hpab-',
shortNamePrefix: process.env.APOS_PREFIX || 'demo-local-',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not a universal demo... how about skhosp-?

// Suffix, used only for building hostnames and not affecting
// e.g. database names. For example, if you set this to `-assembly`,
// and your short name is `site`, the hostname for that site would be
Expand Down
19 changes: 15 additions & 4 deletions dashboard/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
module.exports = {
privateDashboards: true,
modules: {
'@apostrophecms/uploadfs': {
options: {
Expand All @@ -9,8 +8,20 @@ module.exports = {
}
},
helper: {},
site: {},
'@apostrophecms-pro/multisite-dashboard': {},
site: {
options: {
baseUrlDomains: {
local: 'localhost:3000',
// Should be a real registered domain or subdomain with a DNS wildcard pointing to the cloud
staging: 'staging.hospitality.apos.dev',
// Should be a real registered domain or subdomain with a DNS wildcard pointing to the cloud
prod: 'hospitality.apos.dev'
}
}
},
'site-page': {},
asset: {}
}
};
},
privateDashboards: true
};
28 changes: 0 additions & 28 deletions dashboard/modules/site-page/index.js

This file was deleted.

17 changes: 0 additions & 17 deletions dashboard/modules/site-page/views/index.html

This file was deleted.

103 changes: 0 additions & 103 deletions dashboard/modules/site/index.js

This file was deleted.

16 changes: 0 additions & 16 deletions dashboard/modules/site/ui/apos/apps/LaunchSiteEditor.js

This file was deleted.

Loading