Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cremetv/craft-starter
personal basic template for a new craft project
https://github.com/cremetv/craft-starter
Last synced: 2 days ago
JSON representation
personal basic template for a new craft project
- Host: GitHub
- URL: https://github.com/cremetv/craft-starter
- Owner: cremetv
- Created: 2020-08-11T09:49:53.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-10-08T10:01:08.000Z (about 4 years ago)
- Last Synced: 2024-11-09T14:45:44.802Z (about 2 months ago)
- Language: SCSS
- Size: 5.13 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# craft-starter
personal basic template for a new Craft CMS project## cloning
Create a bare clone of this repo.
```
git clone --bare https://github.com/cremetv/craft-starter.git
```
Mirror-push to the new repo.
```
cd craft-starter.git
git push --mirror https://github.com/username/new-repo.git
```
Remove the temporary local repository you created earlier.
```
cd ..
rm -rf craft-starter.git
```
or in windows
```
rd /s /q "craft-starter.git"
```## installation
Once you cloned this starter template to your project folder you can install all the packages.
```
composer i
npm i
```
And finally install craft.
```
craft setup
```## security key
If you need to set your security manually you can do this from your terminal.\
In your terminal, go to your project’s root directory and run the following command:
```
php craft setup/security-key
```