GithubHelp home page GithubHelp logo

blanket-web's Introduction

Blanket Web

This project inspired by blanket.


How to Use

First Run

  1. Create database by running CREATE DATABASE db_blanket_web;.

  2. Switch to the database with USE db_blanket_web;.

  3. Create tables by running the following queries:

    CREATE TABLE `categories` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `name` varchar(30) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
    
    CREATE TABLE `sounds` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `title` varchar(100) NOT NULL,
      `audio_path` varchar(100) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
    
    CREATE TABLE `sound_legals` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `author` varchar(50) DEFAULT NULL,
      `license` varchar(50) DEFAULT NULL,
      `id_sound` int(11) NOT NULL,
      PRIMARY KEY (`id`,`id_sound`)
    ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
    
    CREATE TABLE `sound_details` (
      `id_sound` int(11) NOT NULL,
      `id_category` int(11) NOT NULL DEFAULT 5,
      PRIMARY KEY (`id_category`,`id_sound`)
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    
  4. Create virtual environment.

  5. Activate the virtual environment. It depends on your OS and shell emulator, please refer to this page for better information.

  6. Install all requirements by running pip install -r requirements.txt.

  7. Run the application by using this following commands:

    set FLASK_APP run.py
    flask run
    
  8. It should be make a connection in 127.0.0.1:5000. Open the URL on your browser.

  9. Click the "Reset to Default" Navbar to setup the application sounds data.


Non-First Run

  1. Activate the virtual environment. It depends on your OS and shell emulator, please refer to this page for better information.

  2. Run the application by using this following commands:

    set FLASK_APP run.py
    flask run
    

blanket-web's People

Contributors

ammfat avatar

Watchers

 avatar

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.