Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Starlink Tracker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Humaid Mustajab
Starlink Tracker
Commits
47dc17ad
Commit
47dc17ad
authored
Sep 4, 2020
by
Daniel Yun
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
https://gitlab.cci.drexel.edu/mm4845/starlink-tracker
into master
parents
f3bb833a
78336b30
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
readme.md
+15
-5
15 additions, 5 deletions
readme.md
with
15 additions
and
5 deletions
readme.md
+
15
−
5
View file @
47dc17ad
...
...
@@ -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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment