mirror of
https://github.com/strapi/strapi.git
synced 2026-01-08 05:04:10 +00:00
Remove references to the open-source admin panel
This commit is contained in:
parent
49d4a1a817
commit
1f0137d032
10
README.md
10
README.md
@ -53,16 +53,6 @@ $ strapi start
|
||||
|
||||
The default home page is accessible at [http://localhost:1337/](http://localhost:1337/).
|
||||
|
||||
Strapi comes out of the box with an auto-generated admin panel, based on the models of your
|
||||
application. This dashboard offers the opportunity to easily manage your data. You don't
|
||||
need developer skills to use it.
|
||||
|
||||
The local admin dashboard is available at [http://localhost:1337/admin/](http://localhost:1337/admin/).
|
||||
|
||||
[](http://strapi.io/documentation/admin)
|
||||
|
||||
Note: On the first login, you'll be asked to create the first admin profile.
|
||||
|
||||
### Create your first API
|
||||
|
||||
The Strapi ecosystem offers you two possibilities to create a complete RESTful API.
|
||||
|
||||
21
ROADMAP.md
21
ROADMAP.md
@ -1,22 +1,19 @@
|
||||
# Roadmap
|
||||
|
||||
**v1.1.0**:
|
||||
- Improve API management, wording and application structure with the Strapi Studio.
|
||||
|
||||
**v1.2.0**:
|
||||
- Improve the UX and UI of the admin panel.
|
||||
- Remove the open-source admin panel (this will be available again soon).
|
||||
- GraphQL support for the router and the ORM.
|
||||
- Add an email API.
|
||||
- Add a file upload API.
|
||||
- Improve generated APIs with blueprints.
|
||||
- Add a `$ strapi link` command.
|
||||
- Improve dependencies-negotiation between the framework and the generators.
|
||||
|
||||
**v1.3.0**:
|
||||
- Improve user groups and permissions.
|
||||
- Auto restart the server on changes from the Studio.
|
||||
|
||||
**v1.4.0**:
|
||||
- Edit application settings from the admin panel.
|
||||
|
||||
**v1.5.0**:
|
||||
- Let developers use custom globals.
|
||||
|
||||
**v1.6.0**:
|
||||
- Add resourceful Pub / Sub for models and routes via WebSockets.
|
||||
|
||||
**v1.7.0**:
|
||||
**v1.5.0**:
|
||||
- Content-negotiation on the request and respond either a JSON or a view.
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
module.exports = {
|
||||
_config: true,
|
||||
_api: true,
|
||||
_admin: true,
|
||||
_admin: false,
|
||||
responseTime: true,
|
||||
waterline: true,
|
||||
bodyParser: true,
|
||||
|
||||
@ -114,19 +114,9 @@ module.exports = function (strapi) {
|
||||
loadHook('_api', cb);
|
||||
},
|
||||
|
||||
// Load the admin dictionary.
|
||||
_admin: function loadAdminHook(cb) {
|
||||
if (!hooks._admin) {
|
||||
return cb();
|
||||
}
|
||||
prepareHook('_admin');
|
||||
applyDefaults(hooks._admin);
|
||||
loadHook('_admin', cb);
|
||||
},
|
||||
|
||||
// Prepare all other hooks.
|
||||
prepare: function prepareHooks(cb) {
|
||||
async.each(_.without(_.keys(hooks), '_config', '_api', '_admin'), function (id, cb) {
|
||||
async.each(_.without(_.keys(hooks), '_config', '_api'), function (id, cb) {
|
||||
prepareHook(id);
|
||||
process.nextTick(cb);
|
||||
}, cb);
|
||||
@ -134,7 +124,7 @@ module.exports = function (strapi) {
|
||||
|
||||
// Apply the default config for all other hooks.
|
||||
defaults: function defaultConfigHooks(cb) {
|
||||
async.each(_.without(_.keys(hooks), '_config', '_api', '_admin'), function (id, cb) {
|
||||
async.each(_.without(_.keys(hooks), '_config', '_api'), function (id, cb) {
|
||||
const hook = hooks[id];
|
||||
applyDefaults(hook);
|
||||
process.nextTick(cb);
|
||||
@ -143,7 +133,7 @@ module.exports = function (strapi) {
|
||||
|
||||
// Load all other hooks.
|
||||
load: function loadOtherHooks(cb) {
|
||||
async.each(_.without(_.keys(hooks), '_config', '_api', '_admin'), function (id, cb) {
|
||||
async.each(_.without(_.keys(hooks), '_config', '_api'), function (id, cb) {
|
||||
loadHook(id, cb);
|
||||
}, cb);
|
||||
}
|
||||
|
||||
@ -46,7 +46,6 @@ module.exports = function start(configOverride, cb) {
|
||||
// Log some server info.
|
||||
self.log.info('Server started in ' + self.config.appPath);
|
||||
self.log.info('Your server is running at ' + self.config.url);
|
||||
self.log.info('The admin dashboard is available at ' + self.config.url + '/admin/');
|
||||
self.log.info('Time: ' + new Date());
|
||||
self.log.info('Environment: ' + self.config.environment);
|
||||
self.log.info('Process PID: ' + process.pid);
|
||||
|
||||
@ -4,11 +4,8 @@
|
||||
"description": "Build powerful back-end with no effort",
|
||||
"homepage": "http://strapi.io",
|
||||
"keywords": [
|
||||
"admin",
|
||||
"api",
|
||||
"auth",
|
||||
"cms",
|
||||
"dashboard",
|
||||
"framework",
|
||||
"koa",
|
||||
"koajs",
|
||||
@ -70,7 +67,6 @@
|
||||
"socket.io": "^1.3.7",
|
||||
"socket.io-client": "^1.3.7",
|
||||
"strapi-generate": "^1.1.0",
|
||||
"strapi-generate-admin": "^1.1.0",
|
||||
"strapi-generate-api": "^1.1.0",
|
||||
"strapi-generate-email": "^1.1.0",
|
||||
"strapi-generate-new": "^1.1.0",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user