├── .dockerignore ├── .env.example ├── .flaskenv ├── .gitignore ├── Dockerfile ├── Pipfile ├── Pipfile.lock ├── README.md ├── app ├── __init__.py ├── api │ ├── artwalk_routes.py │ ├── auth_routes.py │ ├── comment_routes.py │ ├── location_get_routes.py │ ├── photo_routes.py │ └── user_routes.py ├── config.py ├── forms │ ├── __init__.py │ ├── artwalk_form.py │ ├── comment_form.py │ ├── login_form.py │ ├── new_location_form.py │ └── signup_form.py ├── helpers.py ├── models │ ├── __init__.py │ ├── artwalk.py │ ├── artwalk_location.py │ ├── comment.py │ ├── db.py │ ├── location.py │ ├── photo.py │ └── user.py └── seeds │ ├── __init__.py │ ├── artwalk_locations.py │ ├── artwalks.py │ ├── comments.py │ ├── locations.py │ ├── photos.py │ └── users.py ├── dev-requirements.txt ├── migrations ├── README ├── alembic.ini ├── env.py ├── script.py.mako └── versions │ ├── 20201120_150602_create_users_table.py │ ├── 20210220_144859_.py │ ├── 20210220_145856_.py │ ├── 20210222_113542_.py │ ├── 20210222_174746_.py │ ├── 20210222_180640_.py │ ├── 20210222_211305_.py │ └── 20210222_211344_.py ├── react-app ├── .env.example ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ └── index.html └── src │ ├── App.js │ ├── components │ ├── ArtCard │ │ ├── ArtCard.js │ │ └── artcard.css │ ├── ArtLocationContainer │ │ ├── ArtLocationContainer.css │ │ └── index.js │ ├── ArtwalkContainer │ │ ├── ArtwalkContainer.css │ │ └── index.js │ ├── ArtwalkView │ │ ├── ArtwalkView.css │ │ └── index.js │ ├── Comment │ │ ├── Comment.css │ │ └── index.js │ ├── CommentContainer │ │ └── index.js │ ├── CommentForm │ │ ├── CommentForm.css │ │ └── index.js │ ├── CreateArtWalk │ │ ├── CreateArtWalk.js │ │ └── createArtWalk.css │ ├── Footer │ │ ├── Footer.css │ │ └── index.js │ ├── Home │ │ ├── Header_Dragon_Skeleton.jpg │ │ ├── Header_Hair_Blowing.jpg │ │ ├── Home.css │ │ └── index.js │ ├── Location │ │ └── Location.js │ ├── LocationContainer │ │ ├── LocationContainer.css │ │ └── index.js │ ├── LocationEditModal │ │ ├── LocationEditModal.css │ │ └── index.js │ ├── LocationForm │ │ ├── expose-art-crop.jpg │ │ ├── expose-art.jpeg │ │ ├── location_form.css │ │ └── location_form.js │ ├── LocationFormModal │ │ ├── LocationFormModal.css │ │ └── location_form_modal.js │ ├── LoginModal │ │ ├── AuthModal.js │ │ ├── LoginModal.css │ │ ├── LoginModalForm.js │ │ ├── SignupModal.css │ │ └── SignupModalForm.js │ ├── Maps │ │ ├── DirectionsMap.js │ │ ├── DisplayWindow.css │ │ ├── DisplayWindow.js │ │ ├── Locate.js │ │ ├── Map.css │ │ ├── Map.js │ │ ├── Search.js │ │ └── mapStyle.js │ ├── Menu │ │ ├── menu.css │ │ └── profilebutton.js │ ├── NavBar │ │ ├── NavBar.js │ │ ├── Navbar.css │ │ ├── artizen_logo.svg │ │ ├── artizen_logo_outline.svg │ │ └── temp-pic.jpg │ ├── RouteMap │ │ ├── RouteMap.css │ │ └── index.js │ ├── SearchBar │ │ ├── SearchBar.css │ │ └── SearchBar.js │ ├── UserProfile │ │ ├── UserProfile.css │ │ └── index.js │ ├── auth │ │ ├── LogoutButton.css │ │ ├── LogoutButton.js │ │ └── ProtectedRoute.js │ └── images │ │ ├── Google_Maps_pin.svg │ │ ├── map_marker.png │ │ └── map_marker1.png │ ├── index.css │ ├── index.js │ ├── services │ ├── auth.js │ └── maps.js │ └── store │ ├── artwalks.js │ ├── comments.js │ ├── index.js │ ├── locations.js │ ├── map.js │ └── session.js └── requirements.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/.env.example -------------------------------------------------------------------------------- /.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_APP=app -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/Dockerfile -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/api/artwalk_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/api/artwalk_routes.py -------------------------------------------------------------------------------- /app/api/auth_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/api/auth_routes.py -------------------------------------------------------------------------------- /app/api/comment_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/api/comment_routes.py -------------------------------------------------------------------------------- /app/api/location_get_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/api/location_get_routes.py -------------------------------------------------------------------------------- /app/api/photo_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/api/photo_routes.py -------------------------------------------------------------------------------- /app/api/user_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/api/user_routes.py -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/config.py -------------------------------------------------------------------------------- /app/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/forms/__init__.py -------------------------------------------------------------------------------- /app/forms/artwalk_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/forms/artwalk_form.py -------------------------------------------------------------------------------- /app/forms/comment_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/forms/comment_form.py -------------------------------------------------------------------------------- /app/forms/login_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/forms/login_form.py -------------------------------------------------------------------------------- /app/forms/new_location_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/forms/new_location_form.py -------------------------------------------------------------------------------- /app/forms/signup_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/forms/signup_form.py -------------------------------------------------------------------------------- /app/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/helpers.py -------------------------------------------------------------------------------- /app/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/models/__init__.py -------------------------------------------------------------------------------- /app/models/artwalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/models/artwalk.py -------------------------------------------------------------------------------- /app/models/artwalk_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/models/artwalk_location.py -------------------------------------------------------------------------------- /app/models/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/models/comment.py -------------------------------------------------------------------------------- /app/models/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/models/db.py -------------------------------------------------------------------------------- /app/models/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/models/location.py -------------------------------------------------------------------------------- /app/models/photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/models/photo.py -------------------------------------------------------------------------------- /app/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/models/user.py -------------------------------------------------------------------------------- /app/seeds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/seeds/__init__.py -------------------------------------------------------------------------------- /app/seeds/artwalk_locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/seeds/artwalk_locations.py -------------------------------------------------------------------------------- /app/seeds/artwalks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/seeds/artwalks.py -------------------------------------------------------------------------------- /app/seeds/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/seeds/comments.py -------------------------------------------------------------------------------- /app/seeds/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/seeds/locations.py -------------------------------------------------------------------------------- /app/seeds/photos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/seeds/photos.py -------------------------------------------------------------------------------- /app/seeds/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/app/seeds/users.py -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | psycopg2-binary==2.8.6 2 | -------------------------------------------------------------------------------- /migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/migrations/alembic.ini -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /migrations/versions/20201120_150602_create_users_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/migrations/versions/20201120_150602_create_users_table.py -------------------------------------------------------------------------------- /migrations/versions/20210220_144859_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/migrations/versions/20210220_144859_.py -------------------------------------------------------------------------------- /migrations/versions/20210220_145856_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/migrations/versions/20210220_145856_.py -------------------------------------------------------------------------------- /migrations/versions/20210222_113542_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/migrations/versions/20210222_113542_.py -------------------------------------------------------------------------------- /migrations/versions/20210222_174746_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/migrations/versions/20210222_174746_.py -------------------------------------------------------------------------------- /migrations/versions/20210222_180640_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/migrations/versions/20210222_180640_.py -------------------------------------------------------------------------------- /migrations/versions/20210222_211305_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/migrations/versions/20210222_211305_.py -------------------------------------------------------------------------------- /migrations/versions/20210222_211344_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/migrations/versions/20210222_211344_.py -------------------------------------------------------------------------------- /react-app/.env.example: -------------------------------------------------------------------------------- 1 | REACT_APP_BASE_URL=http://localhost:5000 2 | -------------------------------------------------------------------------------- /react-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/.gitignore -------------------------------------------------------------------------------- /react-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/README.md -------------------------------------------------------------------------------- /react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/package.json -------------------------------------------------------------------------------- /react-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/public/favicon.ico -------------------------------------------------------------------------------- /react-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/public/index.html -------------------------------------------------------------------------------- /react-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/App.js -------------------------------------------------------------------------------- /react-app/src/components/ArtCard/ArtCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/ArtCard/ArtCard.js -------------------------------------------------------------------------------- /react-app/src/components/ArtCard/artcard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/ArtCard/artcard.css -------------------------------------------------------------------------------- /react-app/src/components/ArtLocationContainer/ArtLocationContainer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/ArtLocationContainer/ArtLocationContainer.css -------------------------------------------------------------------------------- /react-app/src/components/ArtLocationContainer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/ArtLocationContainer/index.js -------------------------------------------------------------------------------- /react-app/src/components/ArtwalkContainer/ArtwalkContainer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/ArtwalkContainer/ArtwalkContainer.css -------------------------------------------------------------------------------- /react-app/src/components/ArtwalkContainer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/ArtwalkContainer/index.js -------------------------------------------------------------------------------- /react-app/src/components/ArtwalkView/ArtwalkView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/ArtwalkView/ArtwalkView.css -------------------------------------------------------------------------------- /react-app/src/components/ArtwalkView/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/ArtwalkView/index.js -------------------------------------------------------------------------------- /react-app/src/components/Comment/Comment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/Comment/Comment.css -------------------------------------------------------------------------------- /react-app/src/components/Comment/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/Comment/index.js -------------------------------------------------------------------------------- /react-app/src/components/CommentContainer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/CommentContainer/index.js -------------------------------------------------------------------------------- /react-app/src/components/CommentForm/CommentForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/CommentForm/CommentForm.css -------------------------------------------------------------------------------- /react-app/src/components/CommentForm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/CommentForm/index.js -------------------------------------------------------------------------------- /react-app/src/components/CreateArtWalk/CreateArtWalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/CreateArtWalk/CreateArtWalk.js -------------------------------------------------------------------------------- /react-app/src/components/CreateArtWalk/createArtWalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/CreateArtWalk/createArtWalk.css -------------------------------------------------------------------------------- /react-app/src/components/Footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/Footer/Footer.css -------------------------------------------------------------------------------- /react-app/src/components/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/Footer/index.js -------------------------------------------------------------------------------- /react-app/src/components/Home/Header_Dragon_Skeleton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/Home/Header_Dragon_Skeleton.jpg -------------------------------------------------------------------------------- /react-app/src/components/Home/Header_Hair_Blowing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/Home/Header_Hair_Blowing.jpg -------------------------------------------------------------------------------- /react-app/src/components/Home/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/Home/Home.css -------------------------------------------------------------------------------- /react-app/src/components/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/Home/index.js -------------------------------------------------------------------------------- /react-app/src/components/Location/Location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/Location/Location.js -------------------------------------------------------------------------------- /react-app/src/components/LocationContainer/LocationContainer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/LocationContainer/LocationContainer.css -------------------------------------------------------------------------------- /react-app/src/components/LocationContainer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/LocationContainer/index.js -------------------------------------------------------------------------------- /react-app/src/components/LocationEditModal/LocationEditModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/LocationEditModal/LocationEditModal.css -------------------------------------------------------------------------------- /react-app/src/components/LocationEditModal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/LocationEditModal/index.js -------------------------------------------------------------------------------- /react-app/src/components/LocationForm/expose-art-crop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/LocationForm/expose-art-crop.jpg -------------------------------------------------------------------------------- /react-app/src/components/LocationForm/expose-art.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/LocationForm/expose-art.jpeg -------------------------------------------------------------------------------- /react-app/src/components/LocationForm/location_form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/LocationForm/location_form.css -------------------------------------------------------------------------------- /react-app/src/components/LocationForm/location_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/LocationForm/location_form.js -------------------------------------------------------------------------------- /react-app/src/components/LocationFormModal/LocationFormModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/LocationFormModal/LocationFormModal.css -------------------------------------------------------------------------------- /react-app/src/components/LocationFormModal/location_form_modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/LocationFormModal/location_form_modal.js -------------------------------------------------------------------------------- /react-app/src/components/LoginModal/AuthModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/LoginModal/AuthModal.js -------------------------------------------------------------------------------- /react-app/src/components/LoginModal/LoginModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/LoginModal/LoginModal.css -------------------------------------------------------------------------------- /react-app/src/components/LoginModal/LoginModalForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/LoginModal/LoginModalForm.js -------------------------------------------------------------------------------- /react-app/src/components/LoginModal/SignupModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/LoginModal/SignupModal.css -------------------------------------------------------------------------------- /react-app/src/components/LoginModal/SignupModalForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/LoginModal/SignupModalForm.js -------------------------------------------------------------------------------- /react-app/src/components/Maps/DirectionsMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/Maps/DirectionsMap.js -------------------------------------------------------------------------------- /react-app/src/components/Maps/DisplayWindow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/Maps/DisplayWindow.css -------------------------------------------------------------------------------- /react-app/src/components/Maps/DisplayWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/Maps/DisplayWindow.js -------------------------------------------------------------------------------- /react-app/src/components/Maps/Locate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/Maps/Locate.js -------------------------------------------------------------------------------- /react-app/src/components/Maps/Map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/Maps/Map.css -------------------------------------------------------------------------------- /react-app/src/components/Maps/Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/Maps/Map.js -------------------------------------------------------------------------------- /react-app/src/components/Maps/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/Maps/Search.js -------------------------------------------------------------------------------- /react-app/src/components/Maps/mapStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/Maps/mapStyle.js -------------------------------------------------------------------------------- /react-app/src/components/Menu/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/Menu/menu.css -------------------------------------------------------------------------------- /react-app/src/components/Menu/profilebutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/Menu/profilebutton.js -------------------------------------------------------------------------------- /react-app/src/components/NavBar/NavBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/NavBar/NavBar.js -------------------------------------------------------------------------------- /react-app/src/components/NavBar/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/NavBar/Navbar.css -------------------------------------------------------------------------------- /react-app/src/components/NavBar/artizen_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/NavBar/artizen_logo.svg -------------------------------------------------------------------------------- /react-app/src/components/NavBar/artizen_logo_outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/NavBar/artizen_logo_outline.svg -------------------------------------------------------------------------------- /react-app/src/components/NavBar/temp-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/NavBar/temp-pic.jpg -------------------------------------------------------------------------------- /react-app/src/components/RouteMap/RouteMap.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /react-app/src/components/RouteMap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/RouteMap/index.js -------------------------------------------------------------------------------- /react-app/src/components/SearchBar/SearchBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/SearchBar/SearchBar.css -------------------------------------------------------------------------------- /react-app/src/components/SearchBar/SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/SearchBar/SearchBar.js -------------------------------------------------------------------------------- /react-app/src/components/UserProfile/UserProfile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/UserProfile/UserProfile.css -------------------------------------------------------------------------------- /react-app/src/components/UserProfile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/UserProfile/index.js -------------------------------------------------------------------------------- /react-app/src/components/auth/LogoutButton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/auth/LogoutButton.css -------------------------------------------------------------------------------- /react-app/src/components/auth/LogoutButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/auth/LogoutButton.js -------------------------------------------------------------------------------- /react-app/src/components/auth/ProtectedRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/auth/ProtectedRoute.js -------------------------------------------------------------------------------- /react-app/src/components/images/Google_Maps_pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/images/Google_Maps_pin.svg -------------------------------------------------------------------------------- /react-app/src/components/images/map_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/images/map_marker.png -------------------------------------------------------------------------------- /react-app/src/components/images/map_marker1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/components/images/map_marker1.png -------------------------------------------------------------------------------- /react-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/index.css -------------------------------------------------------------------------------- /react-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/index.js -------------------------------------------------------------------------------- /react-app/src/services/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/services/auth.js -------------------------------------------------------------------------------- /react-app/src/services/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/services/maps.js -------------------------------------------------------------------------------- /react-app/src/store/artwalks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/store/artwalks.js -------------------------------------------------------------------------------- /react-app/src/store/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/store/comments.js -------------------------------------------------------------------------------- /react-app/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/store/index.js -------------------------------------------------------------------------------- /react-app/src/store/locations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/store/locations.js -------------------------------------------------------------------------------- /react-app/src/store/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/store/map.js -------------------------------------------------------------------------------- /react-app/src/store/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/react-app/src/store/session.js -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewscohen/Artizen/HEAD/requirements.txt --------------------------------------------------------------------------------