Skip to content
This repository has been archived by the owner on May 15, 2023. It is now read-only.

Commit

Permalink
Feature: React Migration
Browse files Browse the repository at this point in the history
- Migrated to React
- Refactored project to fit React
- Refactored styles
  • Loading branch information
ming-suhi authored Nov 30, 2021
2 parents 2a5fdeb + e34ab65 commit 3de178d
Show file tree
Hide file tree
Showing 44 changed files with 18,780 additions and 2,659 deletions.
26 changes: 24 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

/example/
/.env
# dev
.env
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ A. Downloading your data from Facebook
B. Using this project
1. Clone this project by running `git clone https://github.com/ming-suhi/facebook-data-analyzer.git`
2. Go to project directory
3. Create a `.env` file and store the extracted folder path(please refer to `example.env` for example)
4. Install dependencies by running `npm i` in the project directory
5. Finally, run this project with `npm run start`, and you can view it in a browser by going typing `localhost:8000` in the url field.
3. Create a `.env` file inside `backend` folder and store the extracted folder path(please refer to `example.env` for example)
4. Install dependencies by running `npm i` in the project root directory
5. Finally, run this project with `npm run start` in project root directory, and you can view it in a browser by going typing `localhost:3000` in the url field.

# Contributing
## A. Issues
Expand Down
2 changes: 1 addition & 1 deletion example.env → backend/example.env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
PORT="8000"
PORT="5000"
CATALOG_DIRECTORY="C:\Users\ming-suhi\Downloads\facebook-ming-suhi"
Loading

0 comments on commit 3de178d

Please sign in to comment.