Skip to content

pinax/cloudspotting2

Repository files navigation

Cloudspotting 2

CircleCi Codecov

Table of Contents

About Pinax

Pinax is an open-source platform built on the Django Web Framework. It is an ecosystem of reusable Django apps, themes, and starter project templates. This collection can be found at http://pinaxproject.com.

cloudspotting2

Overview

As a web application, cloudspotting2 allows you to create collections of similar cloud images, view other people’s collections, “like” a collection, invite someone to join in the fun, etc.

cloudspotting2 demonstrates Pinax core apps django-user-accounts, pinax-webanalytics, pinax-eventlog, and pinax-templates as provided from the Pinax "account" starter project.

cloudspotting2 integrates Pinax feature apps including pinax-images, pinax-likes, pinax-testimonials, pinax-invitations, pinax-messages, and pinax-announcements.

Installation

Ensure you have pipenv installed and working. This project ships with Pipfile and Pipfile.lock.

$ mkdir cloudspotting2
$ git clone https://github.com/pinax/cloudspotting2.git cloudspotting2
$ cd cloudspotting2
$ pipenv --three  # create Python 3 virtualenv
$ pipenv shell  # activate virtualenv
$ pipenv install  # install requirements from Pipfile.lock
$ npm install  # install requirements from package-lock.json
$ ./manage.py migrate
$ ./manage.py loaddata noticetypes.json sites.json
$ npm run dev

If you are not using pipenv, follow standard virtualenv procedures using requirements.txt:

$ virtualenv cloudspotting2
$ git clone https://github.com/pinax/cloudspotting2.git cloudspotting2
$ source cloudspotting2/bin/activate
$ cd cloudspotting2
$ pip install -r requirements.txt
$ npm install  # install requirements from package-lock.json
$ ./manage.py migrate
$ ./manage.py loaddata noticetypes.json sites.json
$ npm run dev

Browse to http://localhost:3000/

Contribute

For an overview on how contributing to Pinax works read this blog post and watch the included video, or read our How to Contribute section. For concrete contribution ideas, please see our Ways to Contribute/What We Need Help With section.

In case of any questions we recommend you join our Pinax Slack team and ping us there instead of creating an issue on GitHub. Creating issues on GitHub is of course also valid but we are usually able to help you faster if you ping us in Slack.

We also highly recommend reading our blog post on Open Source and Self-Care.

Code of Conduct

In order to foster a kind, inclusive, and harassment-free community, the Pinax Project has a code of conduct. We ask you to treat everyone as a smart human programmer that shares an interest in Python, Django, and Pinax with you.

Connect with Pinax

For updates and news regarding the Pinax Project, please follow us on Twitter @pinaxproject and check out our Pinax Project blog.

License

Copyright (c) 2012-2018 James Tauber and contributors under the MIT license.