aseqbase/skeleton
All the main and applicable aseqbase files and folders, to have a complete but blank aseqbase project...
- Install all dependencies mentioned before
- Follow one of these options:
- Open a terminal in the destination directory (for example,
D:\MyWebsite\skeleton\) of the website, then install the project by:> composer create-project aseqbase/skeleton - Prompts below to create a manageable project (update, uninstall, etc.):
> composer require aseqbase/skeleton > cd vendor/aseqbase/skeleton vendor/aseqbase/skeleton> composer dev:install
- Open a terminal in the destination directory (for example,
- Put the destination directory of your project on the appeared step (for example,
D:\MyWebsite\skeleton\)Destination Directory [D:\MyWebsite\]: D:\MyWebsite\skeleton\
- Follow the steps to finish the installation of sources, database, etc.
- [optional] On the local server, create an optional file named
global.phpin theskeletondirectory to change your-parent-directory-name (from the.aseq) using:or> composer skeleton:create global --aseq "skeleton" --base "your-parent-directory-name" -f
Note: Do not forget to replace "your-parent-directory-name" with your item (default> cd vendor/aseqbase/skeleton vendor/aseqbase/skeleton> composer dev:create global --aseq "skeleton" --base "your-parent-directory-name" -f
.aseq). - Enjoy...
- Do one of the following options:
- Visit its special URL (for example,
http://skeleton.[my-domain-name].com, orhttp://[my-domain-name].com/skeleton) - On the local server:
- Use the following command on the root directory
> composer start - Visit the URL
localhost:8000(for default) on the local browser
- Use the following command on the root directory
- Visit its special URL (for example,
- Enjoy...
- Keep your project updated using
or
> composer skeleton:update> cd vendor/aseqbase/skeleton vendor/aseqbase/skeleton> composer dev:update
- Follow the steps to finish the update of sources, database, etc.
- Enjoy...
- Uninstall the project and the constructed database using:
or
> composer skeleton:unistall> cd vendor/aseqbase/skeleton vendor/aseqbase/skeleton> composer dev:unistall
- Follow the steps to finish the uninstallation of sources, database, etc.
- Enjoy...
- Create a new file by a predefined template name (for example, global, config, back, router, front, user, info, etc.) using:
or
> composer skeleton:create [predefined-template-name]> cd vendor/aseqbase/skeleton vendor/aseqbase/skeleton> composer dev:create [predefined-template-name]
- Follow the steps to finish creating the file.
- Enjoy...