https://github.com/davydany/projectforge
A simple streamlit application to make project management easier.
https://github.com/davydany/projectforge
Last synced: 3 months ago
JSON representation
A simple streamlit application to make project management easier.
- Host: GitHub
- URL: https://github.com/davydany/projectforge
- Owner: davydany
- Created: 2025-03-13T06:26:28.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-13T06:46:55.000Z (over 1 year ago)
- Last Synced: 2025-03-13T07:29:37.693Z (over 1 year ago)
- Language: Python
- Size: 74.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ProjectForge
A comprehensive project management application built with Streamlit.
## Running with Docker
### Prerequisites
- Docker
- Docker Compose
### Quick Start
1. Clone this repository:
```
git clone https://github.com/yourusername/projectforge.git
cd projectforge
```
2. Build and start the Docker container:
```
docker-compose up -d
```
3. Access the application in your browser:
```
http://localhost:8501
```
### Data Persistence
The application data is stored in a SQLite database file in the `./data` directory, which is mounted as a volume in the Docker container. This ensures that your data persists even if the container is stopped or removed.
### Stopping the Application