Site ❤️: http://www.memcode.com/
Trello board: https://trello.com/b/UN0Vnv80/memcode (here you can see what we're working on, what features are to come, and what PRs are welcome)
You are very welcome to send a PR to this repository.
psql postgres
.postgres
user with password: CREATE ROLE postgres WITH LOGIN PASSWORD 'your password here'.ALTER ROLE postgres with superuser;
.env.js
file, put it in the root folder (next to package.json). Inside of env.js
, change DB_USER and DB_PASSWORD to relevant values (your postgres's user and password).make db-reset
.npm install
.make start
, make backend-webpack
, make frontend-webpack
heroku login
.heroku git:remote -a memcode
.make heroku-db-pull
.make test-db-reset
.npm install
.make test-backend
for backend, and make test-frontend
. Both will be automatically compiling code in the runtime, so you don't need to bother with code compilers. Both run code in **/*/... .test.js
file inside of, respectively, backend and frontend folders.