Commit aec4ddf3 authored by Dan-Schaefer's avatar Dan-Schaefer

Deleted duplicate files

parent a3cddf75
Install requirements
```
pip install -r requirements.txt
```
Run containers
```
docker-compose up
docker exec -it mario_db_1 bash
mysql db --password
```
Stop container and remove data
```
docker-compose down -v
```
\ No newline at end of file
version: '3.1'
services:
db:
image: mysql
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
MYSQL_ROOT_PASSWORD: test
MYSQL_DATABASE: db
ports:
- 3306:3306
adminer:
image: adminer
restart: always
ports:
- 8080:8080
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/venv" />
</content>
<orderEntry type="jdk" jdkName="Python 3.8 (mario)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
\ No newline at end of file
PyMySQL==1.0.2
cryptography==37.0.2
pytest==7.1.2
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment