| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
AquilaCMS is an Open Source ecommerce web application, 100% javascript with MERN Stack. Front-end can be used with ReactJS and NextJS (for Server Side Rendering) or any other JS technology (VueJS, Angular, etc). A complete Back office is available for managing your website. You can download some modules or themes in Aquila's Shop.
To install the latest AquilaCMS, you need a web server running :
The package manager yarn 1.22.4+ is required.
g++ gcc libgcc libstdc++ linux-headers make python libtool automake autoconf nasm wkhtmltopdf vips vips-dev libjpeg-turbo libjpeg-turbo-devOn Windows you must download :
You can download the source code from GitHub and run the following command-line (not 'Windows cmd') to launch the installer.
yarn install
npm startyarn install
cp ecosystem.config.example.js ecosystem.config.js
npm run start:pm2docker pull aquilacms/aquilacms
docker run -p 127.0.0.1:3010:3010/tcp aquilacms/aquilacmsAt the first launch, there is an installation page. It allows you to create an env.json file in the config folder.
You can edit this file manually, an example of the different possible properties is in the config/env.example.json file. You can also found all the properties in the documentation
⚠️Warning : there is not MongoDB in AquilaCMS image
To connect your AquilaCMS website to a Mongo database, you can :
- run a MongoDB image next to the AquilaCMS image
- use an external link to, for example, an Atlas database
- use a localhost link to connect AquilaCMS to a database on your host machine (you have to edit your mongod.conf and change your bindIp by your network ip instead of 127.0.0.1)
If you want to have the installation page again, you can remove the env.json file in the config/ folder.
If you want, for any reason, to manually build a theme, you can execute this command at the root of AquilaCMS :
npm run build:win --theme=default_theme
- Instead of build:win you can use build:linux
- At the variable --theme you need to put the name of the theme folder you want to build.
Find some documentation on https://doc.aquila-cms.com/
For the API, the swagger documentation is online at aquila-cms.com/api-docs or local (/api-docs)
Also check-out some tutorials on :
If you want to contribute, you will need to install husky or else you won't be able to commit new features
yarn husky:installAquilaCMS is licensed under OSL3
Installation
Get started
Core reference
Themes
Images
Plugin Creation
Hook
Updating
Testing
| Back | FazBrowse Home | New Git URL |