Skip to content
Snippets Groups Projects
Commit 47dc17ad authored by Daniel Yun's avatar Daniel Yun
Browse files

Merge branch 'master' of https://gitlab.cci.drexel.edu/mm4845/starlink-tracker into master

parents f3bb833a 78336b30
Branches
No related tags found
No related merge requests found
......@@ -13,15 +13,25 @@ Clone repo into a local folder.
### Install dependencies
```bash
In the working directory, run the following:
cd ./back-end && npm install && cd ../front-end && npm install
```
### Database setup
```bash
Install PostgreSQL, put your password into the env.json, then do the following:
psql --username postgres
CREATE DATABASE starlinktrack;
\c starlinktracker;
CREATE TABLE accounts (
name VARCHAR(15) UNIQUE NOT NULL,
pass VARCHAR(15) NOT NULL
);
```
### Run the Tracker
```bash
In the working directory, run the following:
cd ./back-end && concurrently "npm run server" "npm run client"
```
\ No newline at end of file
## License
MIT
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment