This site/app is a work in progress.
I should note that most of these instructions were carried out on MacOS, so some things might require a little more research for other platforms.
You'll need to create a .env.development
file at a minimum to integrate the
client with the server. In it you should type
GATSBY_API_URL=http://localhost:8080
or whereever you're running the server.
https://www.mongodb.com/docs/manual/tutorial/install-mongodb-on-os-x/
- brew tap mongodb/brew
- brew update
- brew install [email protected]
- brew services start [email protected]
- brew services stop [email protected] (we're going to start it manually for authentication reasons)
To set up MongoDB do the following:
mongod --dbpath $(brew --prefix)/var/mongodb
Connect to the instance.
mongosh
Create the user.
use api-development
db.createUser({
user: 'admin',
pwd: 'replace-with-your-password',
roles: [{ role: 'readWrite', db: 'api-development' }],
});
Stop the MongoDB instance and start it again with access control.
mongod --auth --dbpath $(brew --prefix)/var/mongodb
Connect and authenticate as the user.
use api-development
db.auth("admin", "replace-with-your-passowrd")
It should output { ok: 1 }
if you have authenticated.
The uri passed to mongoose connect should be the following for local development:
mongodb://127.0.0.1:27017/api-development
Don't escape any special characters in your password. Copy the .env.development.sample file to a new .env.development file you must create in the server directory.
You'll also need to assign RECAPTCHA_SITE_KEY
for the reCAPTCHA functionality.
Additionally, create the server .env.development
in the server directory, and set
RECAPTCHA_SECRET_KEY
You can obtain values for these keys respectively by going
to https://www.google.com/recaptcha/admin.
cd
intoclient
and runnpm install
- Then, run
gatsby develop
- From the root directory
cd
intoserver
and runnpm install
- Then, run
npm run dev
. NOTE: you will need to have a MongoDB instance installed and configured in the file./config/env/development
.
This should be enough to get you up and running. If you have any questions, please feel free to email me at [email protected].
This project was initially based on what I learned from the following repo:
https://github.com/kunalkapadia/express-mongoose-es6-rest-api
https://chiragrupani.medium.com/writing-unit-tests-in-typescript-d4719b8a0a40