A free and public tool to organise your timeline charts entirely made with Svelte, Typescript & 💖.
Take a look on our website and give your feedback here.
Currently, there is no clear roadmap but we have done a lot of great stuff!
But we continue to have lots of exciting ideas
Thank you everybody for your help!
npm install
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
Tests are located in /src/_test_ directory. They are made with jest
npm run test
#or run the tests and refresh the test each time you modify a file
npm run test:watch
You can also ask for coverage
npm run test --coverage
If you'd like to try out TimeChart, or if you don't have the knowledge (or inclination) to host the application yourself, we suggest you use the official TimeChart server.
Advantages :
Keep in mind that the data you enter are stored with me.
If you'd like to try out TimeChart, or if you don't have the knowledge (or inclination) to host the application yourself, we suggest you use the official [TimeChart] server (https://timeline-chart.dev/).
Advantages:
Keep in mind that the data you enter is stored with me.
The easiest way to install TimeChart is to use our docker-compose.yml file.
Create a directory of your choice (eg: ./timechart
) to store the docker-compose.yml
and .env
files.
mkdir ./timechart
cd ./timechart
Download the docker-compose.yml
and .env
files by running these commands
wget -O docker-compose.yml https://github.com/besstiolle/Timeline/releases/latest/download/docker-compose.yml
wget -O .env https://github.com/besstiolle/Timeline/releases/latest/download/example.env
If you wish to download the files via your web browser, remember to rename example.env to .env.
# You can find documentation for all the supported env variables at https://github.com/besstiolle/Timeline
# The location where your database is stored
DB_LOCATION=/your/own/directory/to/db
Fill in the DB_LOCATION
value with the location of your future database. Now think about how you're going to save it.
Still in the directory of your choice (eg: ./timechart
), start the containers with these commands
docker compose up -d
If you don't want to use Docker Compose, you can launch the application with a single command line:
docker run \
--rm --name timechart_latest \
-p 3000:3000 \
-v /your/own/directory/to/db:/app/db \
besstiolle/timechart:latest
Explanations:
--rm --name timechart_latest
Optional : sets a clear name for the container and deletes it once the container has been switched off. (No data loss is expected if you use the option -v /your/own/directory/to/db:/app/db
)-p 3000:3000
Optional : Used to expose port 3000. You can configure to expose another port. For example, exposing port 8080 would give: -p 8080:3000
-v /your/own/directory/to/db:/app/db
: Defines the location of your database on the host disk.