Code Monkey home page Code Monkey logo

flashcards's Introduction

#Flashcard Application

An electronic flashcard web application. Currently, many flashcard sites charge money for extra features such as: text formatting, pictures, videos, audio, etc. The goal for this project is to offer an open source alternative to those sites and putting the UX/UI first. Full Stack: Spring Framework, Java, C3P0, PostgreSQL, ThymeLeaf, JQuery, JS, Bootstrap, CSS, HTML

Current site: http://imgur.com/a/7bPQI

##Create your own development Environment (Get Hacking!):

1. Go to your command line and input the following:

git clone https://github.com/HubertChen/FlashCards

2. Install PostgreSQL

http://www.postgresql.org/download/

3. Setup the database (Sorry, there should be easier way).

  1. sudo su postgres
  2. createdb flashcards
  3. createuser test with password '123';
  4. grant all privileges on database "flashcards" to test;
  5. create table users(id serial primary key, username varchar(20) not null, email varchar(256), password varchar(512));
  6. create table folders(id serial, userId integer, name varchar(50), dateCreated timestamp);
  7. create table decks(id serial, folderId integer, name varchar(30), description varchar(256), dateCreated timestamp);
  8. create table cards(id serial, deckId integer, front text, back text, footnote text, dateCreated timestamp, picture text);
  9. grant all privileges on all tables in schema public to test;
  10. grant all on users to test;

flashcards's People

Contributors

hubertchen avatar

Watchers

 avatar

Forkers

hubertchen-om

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.