Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 1.02 KB

README.md

File metadata and controls

40 lines (28 loc) · 1.02 KB

Django proof-of-concept for CodeBuddies V3

Background: codebuddies/codebuddies#1136

The API spec all the proof-of-concepts: https://app.swaggerhub.com/apis-docs/billglover/CodeBuddies/0.0.1

Crowdsourced brainstorm of problems we want to solve: https://pad.riseup.net/p/BecKdThFsevRmmG_tqFa-keep

Setup

  • Make sure you have Postgres 11.1 installed
  • Create a Postgres user by typing createuser --interactive --pwprompt
  • Create a database in Postgres called cbv3_django_prototype by typing createdb cbv3_django_prototype
  • Type pip install -r requirements.txt in your command line

Proof-of-concept Goals

A resource datastore

  • save resource
  • delete resource
  • update resource
  • list resource
  • search resources

Resource:

  • title
  • description
  • type
  • credit
  • url
  • referrer

The start of a resource bookmarking/archiving service.

  • Calendar/hangouts
    • How easy would it be to make a calendar widget that lets users block out times they're free for hangouts?

Findings

Technologies Used