https://github.com/jaay7/learn-it
A small CRUD app to manage tutorials.
https://github.com/jaay7/learn-it
flask html mongodb mysql python
Last synced: 3 months ago
JSON representation
A small CRUD app to manage tutorials.
- Host: GitHub
- URL: https://github.com/jaay7/learn-it
- Owner: Jaay7
- License: mit
- Created: 2022-01-05T13:47:46.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-29T11:04:07.000Z (over 4 years ago)
- Last Synced: 2026-01-03T17:15:54.841Z (6 months ago)
- Topics: flask, html, mongodb, mysql, python
- Language: HTML
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# learn-it
Creating a virtual environment.
```sh
virtualenv venv
```
Activating virtual environment.
```
venv\Scripts\activate
```
Installing all the packages using *requirements.txt* file
```sh
pip install -r requirements.txt
```
If packages are already installed it will update accordingly.
```sh
pip install -U -r requirements.txt
```
create a *.env* file and fill your details
```
MONGODB_URI=
MYSQL_HOST=
MYSQL_USER=
MYSQL_PASSWORD=
```