WordShop is a tool for workshopping your writing projects. With it you can exchange thoughtful critiques of works-in-progress with fellow authors and readers. Any kind of writing is welcome, whether non-fiction or fiction, blogpost or poetry, ad copy or novel. As long as it's made with words you can workshop it here.
First, ensure you have the correct version of NodeJS installed via NVM. The version you should install is found in ~/main/.nvmrc
. Then follow the instructions for API and Web below.
$ cd ~/main/api
Install Node Modules for API
$ npm install
Install Serverless globally
$ npm install -g serverless
Install DynamoDb local
$ sls dynamodb install
Install DynamoDb admin globally
$ npm install -g dynamodb-admin
$ cd ~/main/web
Install Node Modules for Web
$ npm install
Install Angular CLI globally
$ npm install -g @angular/cli
To startup the local development environment, run the following:
$ cd ~/main
$ ./dev.sh
- Web:
http://localhost:4200
- API:
http://localhost:3000
- DynamoDb Admin:
http://localhost:8001
- DynamoDb Shell:
http://localhost:8000/shell
To shutdown the local development environment, enter Ctrl+C
.
Thanks for reading!