GithubHelp home page GithubHelp logo

colortrap's People

Contributors

andreaorlandi avatar morlandi avatar

Watchers

 avatar  avatar  avatar

Forkers

andreaorlandi

colortrap's Issues

Create a new app "samples" aimed to collect numeric values

The management command "startapp" can be used to create the skeleton of the new app:

python manage.py startapp samples

Then the normal duties are required to integrate the new app in the project:

  • add "samples" to INSTALLED_APPS list (in settings)
  • provide a default "index" view to the new app
  • create a suitable urls.py in the app
  • include samples.urls in the general (project's) url route

Hint: this app will be very similar to the "chat" app

howto create a Model

At this moment "samples" will require a single model; for example:

class Sample(models.Model):
    id = models.UUIDField(default=uuid.uuid4, primary_key=True, unique=True, null=False, blank=False, editable=False)
    date = models.DateTimeField(auto_now_add=True)
    value = models.FloatField(default=0.0)

Having created a new Model, we need to generate a new migration:

python manage.py makemigrations sample

and run it to update the database structure:

python manage.py migrate

These steps needs to be repeated every time a Model in created or modified

Add a page to generate a random UUID

Purpose

  • add a new page di the "frontend" app
  • each time the page is show, a new random UUID is shown

Hint: in python you can obtain a random UUID as follows:

import uuid
new_uuid = str(uuid.uuid4())

Optional

  • provide an input field to let use ask for more N uuids, where N >= 1

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.