vitya / cms-template
Vitya CMS template
Installs: 47
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Forks: 0
Type:project
pkg:composer/vitya/cms-template
Requires
- vitya/cms-application: ^1.1
This package is auto-updated.
Last update: 2025-09-12 14:12:55 UTC
README
This package contains a basic website template built using Vitya CMS.
How to setup a new application?
You can use Composer to create your app:
composer create-project vitya/cms-template my-new-project
Then you can launch your new app using PHP built-in web server:
php my-new-project/cli/server.php
By default, your application will be available at http://localhost:8000, but you can specify another hostname or port number. For example, this will make your website available to other machines on your network, on port 1234:
php my-new-project/cli/server.php 0.0.0.0:1234
WARNING: the built-in web server is only intended to be used as a development tool! Do NOT use it in a production environment!
How to access the admin interface?
The admin interface will be available at http://localhost:8000/admin. Your username is admin and your password is 123456789.