怎样在小程序里实现标题的更改
968
2022-11-01
Solidus - 一个开源的电子商务应用程序适用于高容量的零售商
Solidus
A free, open-source ecommerce platform that gives you complete control over your store.
Visit our website: https://solidus.io/Read our Community Guidelines: https://solidus.io/community-guidelines/Read our guides: https://guides.solidus.io/developers/Join our Slack: http://slack.solidus.io/Solidus Security: mailing list
Table of Contents
Supporting SolidusSummaryDemoGetting StartedInstallation OptionsPerformanceDeveloping SolidusContributing
Supporting Solidus
As a community-driven project, Solidus relies on funds and time donated by developers and stakeholders who use Solidus for their businesses. If you'd like to help Solidus keep growing, please consider:
Become a backer or sponsor on Open Collective.Contribute to the project.
Main Contributor & Director
At present, Nebulab is the main code contributor and director of Solidus, providing technical guidance and coordinating community efforts and activities.
Ambassadors
Support this project by becoming a Solidus Ambassador. Your logo will show up here with a link to your website. Become an Ambassador.
Summary
Solidus is a complete open source ecommerce solution built with Ruby on Rails. It is a fork of Spree.
See the Solidus class documentation and the Solidus Guides for information about the functionality that Solidus provides.
Solidus consists of several gems. When you require the solidus gem in your Gemfile, Bundler will install all of the gems maintained in this repository:
solidus_api (RESTful API)solidus_frontend (Cart and storefront)solidus_backend (Admin area)solidus_core (Essential models, mailers, and classes)solidus_sample (Sample data)
All of the gems are designed to work together to provide a fully functional ecommerce platform. However, you may only want to use the solidus_core gem combine it with your own custom frontend, admin interface, and API.
Demo
Try out Solidus with one-click on Heroku:
Alternatively, you can use Docker to run a demo on your local machine. Run the following command to download the image and run it at http://localhost:3000.
docker run --rm -it -p 3000:3000 solidusio/solidus-demo:latest
The admin interface can be accessed at http://localhost:3000/admin/, the default credentials are admin@example.com and test123.
Getting started
Begin by making sure you have Imagemagick installed, which is required for Paperclip. (You can install it using Homebrew if you're on a Mac.)
To add solidus, begin with a Rails 5/6 application and a database configured and created.
Installing Solidus
For Solidus v2.10 and belowAdd the following to your Gemfile. Skip the solidus_auth_devise part if you want to use a custom authentication system.gem 'solidus'gem 'solidus_auth_devise'Run the bundle command to install.After installing gems, you'll have to run the generator to create necessary configuration files and migrations.bin/rails g spree:install
For Solidus v2.11 (still unreleased) and aboveAdd the following to your Gemfile.gem 'solidus'Run the bundle command to install.After installing gems, you'll have to run the generator to create necessary configuration files and migrations.bin/rails g solidus:install
Accessing Solidus Store
Start the Rails server with the command:
bin/rails s
The solidus_frontend storefront will be accessible at http://localhost:3000/ and the admin can be found at http://localhost:3000/admin/.
For information on how to customize your store, check out the customization guides.
Default Username/Password
As part of running the above installation steps, you will be asked to set an admin email/password combination. The default values are admin@example.com and test123, respectively.
Questions?
The best way to ask questions is to join the Solidus Slack and join the #support channel.
Installation options
Instead of a stable build, if you want to use the bleeding edge version of Solidus, use this line:
gem 'solidus', github: 'solidusio/solidus'
Note: The master branch is not guaranteed to ever be in a fully functioning state. It is too risky to use this branch in production.
By default, the installation generator (solidus:install) will run migrations as well as adding seed and sample data. This can be disabled using
bin/rails g solidus:install --migrate=false --sample=false --seed=false
You can always perform any of these steps later by using these commands.
bin/rails railties:install:migrationsbin/rails db:migratebin/rails db:seedbin/rails spree_sample:load
There are also options and rake tasks provided by solidus_auth_devise.
Performance
You may notice that your Solidus store runs slowly in development mode. This can be because in development each CSS and JavaScript is loaded as a separate include. This can be disabled by adding the following to config/environments/development.rb.
config.assets.debug = false
Turbolinks
To gain some extra speed you may enable Turbolinks inside of Solidus admin.
Add gem 'turbolinks', '~> 5.0.0' into your Gemfile (if not already present) and change vendor/assets/javascripts/spree/backend/all.js as follows:
//= require turbolinks//// ... current file content////= require spree/backend/turbolinks-integration.js
CAUTION Please be aware that Turbolinks can break extensions and/or customizations to the Solidus admin. Use at your own risk.
Developing Solidus
Clone the Git repogit clone git://github.com/solidusio/solidus.gitcd solidus Install the gem dependenciesbin/setup Note: If you're using PostgreSQL or MySQL, you'll need to install those gems through the DB environment variable.# PostgreSQLexport DB=postgresqlbin/setup# MySQLexport DB=mysqlbin/setup
Sandbox
Solidus is meant to be run within the context of Rails application. You can easily create a sandbox application inside of your cloned source directory for testing purposes.
This sandbox includes solidus_auth_devise and generates with seed and sample data already loaded.
Create the sandbox applicationbin/sandbox You can create a sandbox with PostgreSQL or MySQL by setting the DB environment variable.# PostgreSQLexport DB=postgresqlbin/sandbox# MySQLexport DB=mysqlbin/sandbox If you need to create a Rails 5.2 application for your sandbox, for example if you are still using Ruby 2.4 which is not supported by Rails 6, you can use the RAILS_VERSION environment variable. export RAILS_VERSION='~> 5.2.0' bin/setup bin/sandbox Start the server (bin/rails will forward any argument to the sandbox)bin/rails server
Tests
Solidus uses RSpec for tests. Refer to its documentation for more information about the testing library.
CircleCI
We use CircleCI to run the tests for Solidus as well as all incoming pull requests. All pull requests must pass to be merged.
You can see the build statuses at https://circleci.com/gh/solidusio/solidus.
Run all tests
ChromeDriver is required to run the frontend and backend test suites.
To execute all of the test specs, run the bin/build script at the root of the Solidus project:
createuser --superuser --echo postgres # only the first timebin/build
The bin/build script runs using PostgreSQL by default, but it can be overridden by setting the DB environment variable to DB=sqlite or DB=mysql. For example:
env DB=mysql bin/build
If the command fails with MySQL related errors you can try creating a user with this command:
# Creates a user with the same name as the current user and no restrictions.mysql --user="root" --execute="CREATE USER '$USER'@'localhost'; GRANT ALL PRIVILEGES ON * . * TO '$USER'@'localhost';"
Run an individual test suite
Each gem contains its own series of tests. To run the tests for the core project:
cd corebundle exec rspec
By default, rspec runs the tests for SQLite 3. If you would like to run specs against another database you may specify the database in the command:
env DB=postgresql bundle exec rspec
Code coverage reports
If you want to run the SimpleCov code coverage report:
COVERAGE=true bundle exec rspec
Extensions
In addition to core functionality provided in Solidus, there are a number of ways to add features to your store that are not (or not yet) part of the core project.
A list can be found at extensions.solidus.io.
If you want to write an extension for Solidus, you can use the solidus_dev_support gem.
Contributing
Solidus is an open source project and we encourage contributions. Please read CONTRIBUTING.md before contributing.
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~