Skip to content

VaclavSir/bitstarter

 
 

Repository files navigation

bitstarter

Crowd funding for goals and projects with Bitcoin.

Build Status Status of Dependencies

  • Front-facing web site
    • List of all goals/projects
  • Admin interface:
    • Add/edit/delete goals / projects to be funded with Bitcoin
    • Login and logout
  • Bitcoin API service to look-up funds in public addresses
  • Node script to create admin users

Getting Started

What you need:

You need to get both Node and git working before moving on with the rest of the instructions. Both have pretty straight forward setup guides so getting them working shouldn't be a problem.

  1. After you get these 2 things working, you have to go to https://github.com/Learn-by-doing/bitstarter and fork the git repository using these instructions https://help.github.com/articles/fork-a-repo/

  2. Navigate to your project directory and run npm install to install all the dependencies required by the project

  3. Add a user to the bitstarter database with the same name. Sample SQL statement to do this:

CREATE USER 'bitstarter'@'localhost' IDENTIFIED BY  'password';

GRANT USAGE ON * . * TO  'bitstarter'@'localhost' IDENTIFIED BY  'password' WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0 ;

GRANT ALL PRIVILEGES ON  `bitstarter` . * TO  'bitstarter'@'localhost';
  1. Run npm start

That's it!

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 89.4%
  • HTML 10.6%