https://github.com/devkcud/storage-system
Fullstack application for managing a storage/inventory system.
https://github.com/devkcud/storage-system
Last synced: 2 months ago
JSON representation
Fullstack application for managing a storage/inventory system.
- Host: GitHub
- URL: https://github.com/devkcud/storage-system
- Owner: devkcud
- License: mit
- Archived: true
- Created: 2023-10-11T02:21:48.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-30T06:51:28.000Z (about 2 years ago)
- Last Synced: 2024-06-21T15:42:00.579Z (almost 2 years ago)
- Language: Svelte
- Size: 199 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Storage System - Discontinued
Fullstack application for managing a storage/inventory system.
> Built with local development in mind. May not be suitable for online production use.
## Features
- REST API
- MongoDB
## Running MongoDB service
Before running the API, a _MongoDB_ service must be running on port _27017_ (default).
**Systemd**:
```shell
# systemctl start mongodb.service
```
**_MongoDB_ daemon (using config file)**:
```shell
# mongod --config /etc/mongodb.conf
```
**_MongoDB_ daemon (using flag)**:
```shell
# mongod --port 27017
```
## Running the API
**WARNING:** If the _MongoDB_ service is not running, the API will **NOT** work.
If you are on Unix, you can run the API with:
```shell
$ cd api/
$ make build run
```
## Running Web UI
**TODO**
## License
Currently using MIT license. [View here](LICENSE)