A web app for users to search information related the current crypto-currencies. So you can get more information about the crypto-currencies you are interested in.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
-
Clone the repo:
git clone https://github.com/fac-13/crypt-os.git
-
Run npm install to install all dependencies:
npm install
-
Open either pgcli/psql, and create a database:
createdb testdb
-
Create a user for your database using:
CREATE USER [the new username] WITH SUPERUSER PASSWORD '[the password of the database]';
-
exit pgcli/psql and run the build the database locally using:
\q
(exits pgcli/psql)psql -d testdb -f [full file path to db build];
-
Select data from coins table:
SELECT * FROM coins
To see the tests used to build the app run:
npm test
what these test ----------------------------