cmsRS Installation
Get the source code:
GitHub – cmsrs3 (Laravel) - Server
GitHub – cmsrs3-vuejs - Admin Panel
GitHub – cmsrs3-nuxt - Freontend nuxt
Install server - Laravel:
Before running the script, make sure you have configured the database connection (host, database name, username, password, and port).
Run the following command to create the project:
composer create-project cmsrs/cmsrs3 cd cmsrs3 php artisan cmsrs:install php artisan serve
Once the server is running, open your browser and navigate to:
http://127.0.0.1:8000
Managment
Go to the website http://127.0.0.1:8000/admin/
log in as:
username: adm@cmsrs.pl
default password: cmsrs123
- Create main page (page type: main_page)
- Add menu
- Add pages
Optionally - Admin Panel - vue.js
Download the source code:
git clone https://github.com/cmsrs/cmsrs3-vuejs.git && cd cmsrs3-vuejs
Copy the example configuration file:
cp ./src/config.js.example ./src/config.js
Open ./src/config.js and modify this file to suit your needs.
Install and start the Vue.js development server:
npm install && npm run dev
Optionally - Headless Frontend - nuxt
Download the source code:
git clone https://github.com/cmsrs/cmsrs3-nuxt.git && cd cmsrs3-nuxt
Copy the example configuration file:
cp .env.example .env
Open .env and modify this file to suit your needs.
Install and start the Nuxt development server:
npm install && npm run dev