feathercms

🪶 Feather is a modern Swift-based content management system powered by Vapor 4.
💬 Click to join the chat on Discord.
To use Feather you'll have to install Swift 5.3 or greater (using Linux or macOS is recommended).
If you need help installing Swift, you should follow the official instructions available on swift.org.
Clone or download the source files using the Feather repository.
git clone https://github.com/FeatherCMS/feather.git
Change the current working directory (located under the target setting when using Xcode) to the project directory.
cd feather
Create a dotenv file ( .env or .env.development) based on your environment) and config the following values.
# the base url of your web server
BASE_URL="http://localhost:8080"
# the base path (absolute) of the working directory
BASE_PATH="/path/to/feather/"
# Optional environmental variables
# MAX_UPLOAD_SIZE="10mb"
# USE_FILES_MIDDLEWARE="true"
# Available database types: sqlite (default) / mysql / postgres
# DB_TYPE="mysql"
# DB_HOST="127.0.0.1"
# DB_USER="feather"
# DB_PASS="feather"
# DB_NAME="feather"
# Default port numbers: mysql - 3306 / postgres - 5432
# DB_PORT=3306
You can run the make env command to quickly create a development environment with the curret directory as a base path.
Start the server using the swift run Feather command (alternatively you can use the make run command).
swift package generate-xcodeproj command, it's deprecated.Package.swift file.Feather scheme to the root of the project directory.Feather is also available on DockerHub, you can use the following command to pull the latest version.
docker pull feathercms/feathercms:latest
You can also build your own images using docker-compose for more information check the following wiki page
The FeatherCore framework provides all the necessary API to configure your Feather application.
By default Feather uses the SQLite driver, but it is possible to use PostgreSQL, MySQL (MariaDB) or even MongoDB as your database driver through the Fluent framework.
You should follow the instructions using the official Vapor docs to setup the right driver, but please note that the preferred drivers are PosgreSQL and SQLite for really small projects and development purposes.
The Liquid framework is an abstract file storage library that works with a local file storage driver, but it is also possible to use Amazon S3 as a cloud-based solution.
You can replace the default local driver with the S3 driver, which is powered by the Soto for AWS SDK.
Feather is a modular CMS system, you can add new modules as Swift package dependencies or place them under the Modules directory.
Feather gives you just a few core modules that you can also disable, but it is recommended to keep them around.
(e.g you only need an API, without web frontend or admin interface)
Every other module can be completely removed (just alter the SPM dependency & configuration file).
💡 Feel free to fork this repository and create your own configuration as per needed.
After the server is running Feather will setup everything you need to run your site.
Bundled resources (public files and templates) will be copied to the project folder (if needed).
The first time when you open your page Feather will run in a "system install" mode, during this process:
You are ready to use your Feather-based website.
You can log in to the admin interface using the [email protected] & FeatherCMS user account.
⚠️ For security reasons, please change the default email & password using the user menu after the first login.
You can read more about how to use Feather in the wiki.
You can create your very own stylesheet by overriding the files inside the Public folder.
It is also possible to create custom theme for Feather by altering the templates inside the Resources folder.
⚠️ Keep in mind that these files are ignored from the git repository by default.
👻 You might want to change this behavior by updating your .gitignore file.
⭐️ If you delete a file from these folders the next time you run Feather it'll be restored automatically.
🪶 Feather is an open source software and your contributions are more than welcome.
🔀 If you wish to make a change, please open a Pull Request.
🙏 Please don't hesitate to send your feedbacks, thoughts and ideas about Feather.
WTFPL - Do What The Fuck You Want Public License
Content type
Image
Digest
Size
171.1 MB
Last updated
about 5 years ago
docker pull feathercms/feathercms