Confirmation Icon

Docs

Learn how to use the Launchr template
Guides
Quickstart
How to get started with Launchr.
Payments
Setting up Stripe to receive payments
Code overview
Coming soon
Meet your stack
Coming soon
Third party services
Coming soon
Dependencies
Coming soon

Quickstart


Prerequisites

Launchr uses Docker and Docker Compose to run your stack during development and production. If you haven't already, please install them now.

Docker Docker Compose

Installing

To create a new project, open up a terminal and clone Launchr to your current working directory:

git clone https://github.com/jayfk/launchr.git

Move the repository you just cloned to the one your are going to use for your project:

mv launchr project_name

Switch to your newly created project directory and start the stack:

cd project_name
docker-compose up

Once Docker is finished downloading and building, open up a second terminal and run the initial migrations for the project:

docker-compose run app python manage.py migrate

You should now be able to reach your local development server by visiting http://0.0.0.0:8000/ .

Where to go from here?

One of the first things you want to do is to set up payments via Stripe.