Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mervinpraison/stickerapp
https://github.com/mervinpraison/stickerapp
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mervinpraison/stickerapp
- Owner: MervinPraison
- License: mit
- Created: 2019-10-14T08:16:24.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-01T16:17:01.000Z (almost 2 years ago)
- Last Synced: 2024-04-15T23:02:24.411Z (9 months ago)
- Language: JavaScript
- Size: 355 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.MD
- License: LICENSE.MD
Awesome Lists containing this project
README
# Stickerfy
### Run Locally on Your Machine
You need Node, NPM and MongoDB properly installed. To get started:1. Clone this repository
``` shell
git clone https://github.com/meaghanlewis/stickerfy.git
```
2. Setup the environment variable for the MongoDB URI
``` shell
export MONGODB_URI=mongodb://localhost:27017/shopping
```
3. Install dependencies
``` shell
npm install
```4. Start up MongoDB
``` shell
mongod
```5. Populate shopping database
``` shell
node seed/product-seeder.js
```
Once the project is setup, start the dev server with Nodemon.
``` shell
npm run dev
```
Server will start at: http://localhost:3000