https://github.com/scriptfusion/template
Template for creating new ScriptFUSION projects.
https://github.com/scriptfusion/template
Last synced: 4 months ago
JSON representation
Template for creating new ScriptFUSION projects.
- Host: GitHub
- URL: https://github.com/scriptfusion/template
- Owner: ScriptFUSION
- Created: 2017-06-17T21:03:20.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-11-10T22:40:18.000Z (almost 6 years ago)
- Last Synced: 2025-03-17T07:24:29.655Z (8 months ago)
- Language: PHP
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Template
========
Template for creating new ScriptFUSION projects.
Usage
-----
1. `git clone git@github.com:ScriptFUSION/Template.git MYPROJ` – Clone this repository as *MYPROJ*.
2. `rm -rf .git` – Delete the VCS data.
3. `git init` – Start a new VCS repository.
4. `(shopt -s dotglob; for file in *.dist; do mv "$file" "${file%.*}"; done)` – Rename `*.dist` files, removing the *.dist* extension.
5. Replace placeholders in `composer.json`.
6. Create a hosted repository for the project on a VCS service like GitHub. Configure the local repository according to the instructions provided by the service.
7. Generate a new readme with `bin/generate\ readme\ template ` or edit manually.
8. `rm -rf bin` – Remove *bin* directory.
8. `git add . && git commit -m 'Initial commit.'` – Commit changes.
9. `git push` – Upload changes.