https://github.com/juli1/product-microservice
https://github.com/juli1/product-microservice
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/juli1/product-microservice
- Owner: juli1
- License: mit
- Created: 2023-06-19T16:02:34.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-20T13:39:13.000Z (almost 2 years ago)
- Last Synced: 2025-02-12T23:43:17.131Z (4 months ago)
- Language: Python
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# product-microservice
Bootstrap the project
1. Create a virtual environment `python -mvenv venv`
2. Use the virtual environment `source venv/bin/activate`
3. Install all dependencies `pip install -r requirements.txt`
4. Init the database `rm -f db.sqlite ; sqlite3 db.sqlite < init.sql`Start the project:
```shell
flask --app service run
```