Download the PHP package troisieme/overdog without Composer
On this page you can find all versions of the php package troisieme/overdog. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download troisieme/overdog
More information about troisieme/overdog
Files in troisieme/overdog
Informations about the package overdog
Overdog - A scaffolding project for Craft CMS 4.x
This Craft CMS starter project is for developers who want to build a website or small web application from a solid foundation based on best practices.
Version
1.6.1
Installation
Navigate to your web projects folder. You can change the last term "overdog" - this will be the name of your project folder.
Create a new project
Install Node.js packages for development and compilation
Set up a new local server host and database
- Create a new Host on your local server.
- Set up a MySQL database. You can use the username and password as "root/root", as this will never be deployed.
- Point this host to the web folder of your project.
[!NOTE] If you're using MAMP Pro, make sure "Allow network access to MySQL" is checked in the MySQL tab.
Update certain variables in the .env file
In the .env file located at the root of your project, fill in the following details. You can leave the other variables empty for the time being and configure them later:
CRAFT_SYSTEM_NAME
— Project name - this will be visible in the Control Panel; enclose it in quotes.SITE_URL
— The main development URL of your host (without trailing slash).SITE_GROUP
— Name of the locale (language) group. Likely the project name.CRAFT_DB_DRIVER
— "mysql"CRAFT_DB_SERVER
— "localhost" or "127.0.0.1" (as an example).CRAFT_DB_PORT
— Commonly "3306" or "8889".CRAFT_DB_DATABASE
— Name of the database you created.CRAFT_DB_USER
— Username (possibly "root").CRAFT_DB_PASSWORD
— Password (possibly "root").CRAFT_DB_SCHEMA
— "public".CRAFT_DB_TABLE_PREFIX
— Database table prefix, typically left empty in most scenarios.
Install Craft CMS
In your project folder, execute the following in the terminal.
[!NOTE] When prompted for the SITE NAME, SITE URL, and LANGUAGE during installation, simply press Enter. Your installation will align with the settings from your .env file. Should you have maintained the default Overdog details in the env file, you'll have the flexibility to adjust them post-installation.
Create a Git repo with your git provider
Set up your project with your provider.
[!WARNING] Do not check "Initialize repository with a readme"; keep it entirely empty.
Integrate Git with your local project
- Add the previously created project folder to your software or terminal to initialize Git (the method may vary slightly depending on the tool you're using).
- After the first commit, consider renaming your local branch to "develop".
- Add the remote link, ideally using SSH, of the project you set up with your provider.
- Make an initial commit on the "develop" branch and push it to create a new "develop" branch on the remote repository.
Documentation
All versions of overdog with dependencies
craftcms/cms Version 4.10.3
craftcms/redactor Version 3.1.0
ianreid/switcher Version ^1.1
nystudio107/craft-retour Version ^4.1.15
vlucas/phpdotenv Version ^5.4.0