A secure code storage application.
- Clone the repository
- Creating a virtual environment
2.1python -m venv venv
2.2 Orpython3 -m venv venv - Using a virtual environment
3.1 Linux:source .venv/bin/activate
3.2 Windows:.venv\Scripts\activate - Run the application
4.1python main.py - Install requirements
5.1pip install -r requirements.txt - Deactivate
5.1deactivate
Please make sure not to commit any sensitive files listed in .gitignore.
To run the tests, follow these steps:
- Ensure you're in the project root directory and your virtual environment is activated.
- Run the following command:
python -m unittest discover tests