Crawl is a pub crawl planning app! Use our app here https://crawl.now.sh/
Created by as part of our final project at Makers Academy!
- We use React and Next.js to create our full stack application
- Travis CI for our deployment pipelines and hosted in Now
- JEST and Enzyme for unit tests
- Cypress for functional tests
clone this repo and install dependencies:
npm install
setup a new mongodb database with a user and password here - https://cloud.mongodb.com/
Set up a google maps account and project to get an API key here - https://developers.google.com/maps/documentation
Set a .env
and .env.build
file at the project root with the following values
GOOGLE_MAPS_API_KEY_CLIENT=<YOUR KEY HERE>
GOOGLE_MAPS_API_KEY_SERVER=<YOUR KEY HERE>
DB_LINK=<YOUR DB LINK HERE>
DB_USER=<YOUR USER HERE>
DB_PASSWORD=<YOUR PASSWORD HERE>
in order to run via Now, install now CLI on your local dev machine - https://zeit.co/download
Start the project by running now dev