Skip to content

Tutorial to launch it #58

Answered by PabloLec
julian-passebecq asked this question in Q&A
Discussion options

You must be logged in to vote

Hi,

You could run the frontend easily, but I don't think that would be any help for you. Modifying my repo for your use would need a full rewrite.

If no existing solution fits your needs, you could indeed try to do something similar to StarryLines.
What might be relevant:

  • The data table populates itself by querying my API with the current language to be shown:
    async fetchData() {
    this.loading = true;
    const res = await fetch(
    `https://starrylines.pablolec.dev/api/${this.language}_top`
    );
    const data = await res.json();
  • This API is ran using Cloudflare edge func…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@julian-passebecq
Comment options

Answer selected by julian-passebecq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants