Skip to content

Commit

Permalink
Added code to parse booking page
Browse files Browse the repository at this point in the history
  • Loading branch information
mahathu committed Feb 25, 2022
1 parent 4265a82 commit f3b6f59
Show file tree
Hide file tree
Showing 17 changed files with 2,158 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# python virtual environment
env/
/env/
/client/node_modules/
/client/public/build/
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
### setup

1) Create a new `python3` environment: `python3 -m venv env`
2) Activate the environment and install necessary packages:
```
source env/bin/activate
python3 -m pip install -r requirements.txt
```
3) Install node packages within the `client` directory: `cd client && npm install`
4) Run server (from the root directory of the repo): `python server.py`
4 changes: 4 additions & 0 deletions client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/node_modules/
/public/build/

.DS_Store
Loading

0 comments on commit f3b6f59

Please sign in to comment.