Mirror of github.com/kingomarnajjar/flex-template-web
Find a file
2018-04-27 14:14:56 +03:00
.circleci Test CI workflows 2018-04-03 14:28:56 +03:00
docs Add documentation for extending listing data model 2018-04-27 14:14:56 +03:00
ext/default-mail-templates Format docs 2018-04-12 13:33:12 +03:00
public Remove Stripe v2 2018-03-26 15:04:18 +03:00
server Use Transit Verbose mode in development 2018-04-12 16:28:16 +03:00
src EditListingWizard tabs: fix submit button states 2018-04-20 13:05:24 +03:00
.editorconfig Add .editorconfig file and make Prettier use it 2017-12-11 11:27:24 +02:00
.env-template Revert PORT handling to previous behaviour 2018-03-15 22:25:47 +02:00
.env.development Use Transit Verbose mode in development 2018-04-12 16:28:16 +03:00
.env.test Revert PORT handling to previous behaviour 2018-03-15 22:25:47 +02:00
.gitignore Harmonize client & server env handling 2018-03-15 14:27:57 +02:00
.nsprc Add nsp exception for hoek vulnerability 2018-02-16 10:47:29 +02:00
.prettierignore Add formatting to markdown files 2017-12-11 10:59:04 +02:00
heroku-copy-ssh-key-from-env.sh Copy GitHub SSH key in Heroku to access private repositories 2017-02-24 10:42:53 +02:00
LICENSE Add Apache-2.0 license 2018-01-08 10:43:58 +02:00
package.json Add Final Form 2018-04-20 13:05:15 +03:00
README.md Rename doc to customisation guide 2018-04-19 11:17:52 +03:00
yarn.lock Form is responsible to change customErrorText 2018-04-20 13:05:23 +03:00

Sharetribe Flex Template for Web

CircleCI

This is a template web application for a Sharetribe Flex marketplace ready to be extended and customised. It is based on an application bootstrapped with create-react-app with some additions, namely server side rendering and a custom CSS setup.

Quick start

If you just want to get the app running quickly to test it out, first install Node.js and Yarn, and follow along:

git clone git@github.com:sharetribe/sharetribe-starter-app.git # clone this repository
cd sharetribe-starter-app/                                     # change to the cloned directory
cp .env-template .env                                          # copy the env template file to add your local config
emacs .env                                                     # in your favorite editor, add the mandatory env vars to the config
yarn install                                                   # install dependencies
yarn run dev                                                   # start the dev server, this will open a browser in localhost:3000

See the Environment configuration variables documentation for more information of the required configuration variables.

Note: If you want to build your own Flex marketplace on top of the template, you should fork the repository instead of cloning it. See the following section.

Getting started with your own customisation

If you want to build your own Flex marketplace by customising the template application, see the Customisation guide documentation.

Documentation

Full documentation can be found in the docs directory.

License

This project is licensed under the terms of the Apache-2.0 license.

See LICENSE